summaryrefslogtreecommitdiffstats
path: root/etc/devd.conf
diff options
context:
space:
mode:
authormtm <mtm@FreeBSD.org>2008-01-26 13:50:38 +0000
committermtm <mtm@FreeBSD.org>2008-01-26 13:50:38 +0000
commit619355f25878085219888536d3c63227c54df28c (patch)
tree924afd0198c44134fd7c5005285cf8990e759b41 /etc/devd.conf
parentbf5451f3d46380fd08b52f5d4aae357a59c5e49a (diff)
downloadFreeBSD-src-619355f25878085219888536d3c63227c54df28c.zip
FreeBSD-src-619355f25878085219888536d3c63227c54df28c.tar.gz
Generally, anything that runs rc.d scripts internally should
start using the quiet prefix (i.e. quietstart, quietstop, etc...).
Diffstat (limited to 'etc/devd.conf')
-rw-r--r--etc/devd.conf10
1 files changed, 5 insertions, 5 deletions
diff --git a/etc/devd.conf b/etc/devd.conf
index 94fbb79..bb41b5b 100644
--- a/etc/devd.conf
+++ b/etc/devd.conf
@@ -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
OpenPOWER on IntegriCloud