freebsd-dev/etc/devd/devmatch.conf
Warner Losh 0a463958e7 Fix quoting in sending the NOMATCH event to devmatch
The NOMATCH event was previously quoted to protect it from shell
expansion. However, that quoting now interferes with the quoting devd
is doing. Quote to protect just the ?.
2018-06-28 15:00:18 +00:00

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