The pfctl(8) program is already pretty verbose, so don't print extra

information in quiet mode.
This commit is contained in:
Mike Makonnen 2008-07-11 08:11:49 +00:00
parent 4f2945f832
commit 5692c36098
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=180440

View File

@ -25,7 +25,7 @@ required_modules="pf"
pf_start()
{
echo "Enabling pf."
[ -z "${rc_quiet}" ] && echo "Enabling pf."
$pf_program -F all > /dev/null 2>&1
$pf_program -f "$pf_rules" $pf_flags
if ! $pf_program -s info | grep -q "Enabled" ; then
@ -36,7 +36,7 @@ pf_start()
pf_stop()
{
if $pf_program -s info | grep -q "Enabled" ; then
echo "Disabling pf."
[ -z "${rc_quiet}" ] && echo "Disabling pf."
$pf_program -d
fi
}