Generally, anything that runs rc.d scripts internally should

start using the quiet prefix (i.e. quietstart, quietstop, etc...).
This commit is contained in:
Mike Makonnen 2008-01-26 13:50:38 +00:00
parent 016cb0ba87
commit 8511b3cb47
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=175683

View file

@ -53,7 +53,7 @@ notify 0 {
match "system" "IFNET";
match "type" "LINK_UP";
media-type "ethernet";
action "/etc/rc.d/dhclient start $subsystem";
action "/etc/rc.d/dhclient quietstart $subsystem";
};
#
@ -73,7 +73,7 @@ notify 0 {
match "system" "IFNET";
match "type" "LINK_UP";
media-type "802.11";
action "/etc/rc.d/dhclient start $subsystem";
action "/etc/rc.d/dhclient quietstart $subsystem";
};
# An entry like this might be in a different file, but is included here
@ -91,11 +91,11 @@ detach 100 {
# When a USB Bluetooth dongle appears activate it
attach 100 {
device-name "ubt[0-9]+";
action "/etc/rc.d/bluetooth start $device-name";
action "/etc/rc.d/bluetooth quietstart $device-name";
};
detach 100 {
device-name "ubt[0-9]+";
action "/etc/rc.d/bluetooth stop $device-name";
action "/etc/rc.d/bluetooth quietstop $device-name";
};
# When a USB keyboard arrives, attach it as the console keyboard.
@ -112,7 +112,7 @@ detach 100 {
# stops automatically (actually it bombs :) when the device disappears.
attach 100 {
device-name "ums[0-9]+";
action "/etc/rc.d/moused start $device-name";
action "/etc/rc.d/moused quietstart $device-name";
};
# Firmware download into the ActiveWire board. After the firmware download is