Author: emax
Date: Mon Mar 1 18:58:18 2010
New Revision: 204526
URL: http://svn.freebsd.org/changeset/base/204526
Log:
Use start/stop instead of quietstart/quietstop. Pointy hat goes to me.
Pointed out by: jhb
Modified:
stable/7/etc/rc.d/ipfw
Modified: stable/7/etc/rc.d/ipfw
==============================================================================
--- stable/7/etc/rc.d/ipfw Mon Mar 1 17:42:06 2010 (r204525)
+++ stable/7/etc/rc.d/ipfw Mon Mar 1 18:58:18 2010 (r204526)
@@ -66,7 +66,7 @@ ipfw_poststart()
#
for _coscript in ${firewall_coscripts} ; do
if [ -f "${_coscript}" ]; then
- ${_coscript} quietstart
+ ${_coscript} start
fi
done
@@ -87,7 +87,7 @@ ipfw_stop()
#
for _coscript in `reverse_list ${firewall_coscripts}` ; do
if [ -f "${_coscript}" ]; then
- ${_coscript} quietstop
+ ${_coscript} stop
fi
done
}
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"