9d3730e514
- devmatch_enable in rc.conf(5) was not gating the start of devmatch - Use quietstart in devd/devmatch to suppress dozens of 'Cannot start' messages and other spurious messages from rc.subr(8) that aren't necessarily helpful. Discussed with: imp
21 lines
456 B
Plaintext
21 lines
456 B
Plaintext
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
#
|
|
# Example devd configuration file for automatically
|
|
# loading what modules we can based on nomatch
|
|
# events.
|
|
#
|
|
# Generic NOMATCH event
|
|
nomatch 100 {
|
|
action "service devmatch quietstart '?$_'";
|
|
};
|
|
|
|
# Add the following to devd.conf to prevent this from running:
|
|
# nomatch 1000 {
|
|
# action "true";
|
|
# };
|
|
# it replaces the generic event with one of higher priority that
|
|
# does nothing. You can also set 'devmatch_enable=NO' in /etc/rc.conf
|