diff options
author | mtm <mtm@FreeBSD.org> | 2008-01-26 14:02:19 +0000 |
---|---|---|
committer | mtm <mtm@FreeBSD.org> | 2008-01-26 14:02:19 +0000 |
commit | bbd4f2a2116be9844c33e49113b99b9fcfe493be (patch) | |
tree | 12b4d2ed43ed5ae7e8ad93ff80bb1003006049c1 | |
parent | 2918e1cac2f03dbb77a75a9cb06fc11f41293df7 (diff) | |
download | FreeBSD-src-bbd4f2a2116be9844c33e49113b99b9fcfe493be.zip FreeBSD-src-bbd4f2a2116be9844c33e49113b99b9fcfe493be.tar.gz |
Generally, anything that runs rc.d scripts internally should
start using the quiet prefix (i.e. quietstart, quietstop, etc...).
-rw-r--r-- | etc/rc.d/ipfw | 4 | ||||
-rwxr-xr-x | etc/rc.d/mountcritremote | 2 | ||||
-rw-r--r-- | etc/rc.d/ppp | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/etc/rc.d/ipfw b/etc/rc.d/ipfw index 920eb28..115d85a 100644 --- a/etc/rc.d/ipfw +++ b/etc/rc.d/ipfw @@ -24,7 +24,7 @@ ipfw_start() if [ -r "${firewall_script}" ]; then if [ -f /etc/rc.d/natd ] ; then - /etc/rc.d/natd start + /etc/rc.d/natd quietstart fi /bin/sh "${firewall_script}" echo 'Firewall rules loaded.' @@ -52,7 +52,7 @@ ipfw_stop() # ${SYSCTL_W} net.inet.ip.fw.enable=0 if [ -f /etc/rc.d/natd ] ; then - /etc/rc.d/natd stop + /etc/rc.d/natd quietstop fi } diff --git a/etc/rc.d/mountcritremote b/etc/rc.d/mountcritremote index bacf732..94a37dc 100755 --- a/etc/rc.d/mountcritremote +++ b/etc/rc.d/mountcritremote @@ -65,7 +65,7 @@ mountcritremote_start() done # Cleanup /var again just in case it's a network mount. - /etc/rc.d/cleanvar reload + /etc/rc.d/cleanvar quietreload rm -f /var/run/clean_var /var/spool/lock/clean_var } diff --git a/etc/rc.d/ppp b/etc/rc.d/ppp index b5ca7df..01fc2b1 100644 --- a/etc/rc.d/ppp +++ b/etc/rc.d/ppp @@ -82,8 +82,8 @@ ppp_poststart() { # Re-Sync ipfilter and pf so they pick up any new network interfaces # - /etc/rc.d/ipfilter resync - /etc/rc.d/pf resync + /etc/rc.d/ipfilter quietresync + /etc/rc.d/pf quietresync } ppp_stop_profile() { |