From ae4d6ea88f5498ae5aa73319ff2b7d7d650aaa16 Mon Sep 17 00:00:00 2001 From: Mike Makonnen Date: Sat, 26 Jan 2008 14:02:19 +0000 Subject: [PATCH] Generally, anything that runs rc.d scripts internally should start using the quiet prefix (i.e. quietstart, quietstop, etc...). --- etc/rc.d/ipfw | 4 ++-- etc/rc.d/mountcritremote | 2 +- 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 920eb28f1781..115d85aeb7f5 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 bacf73240aa3..94a37dcee964 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 b5ca7df04566..01fc2b19c372 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() {