aboutsummaryrefslogtreecommitdiff
path: root/etc/rc.network
diff options
context:
space:
mode:
authorDima Dorfman <dd@FreeBSD.org>2002-03-04 10:30:24 +0000
committerDima Dorfman <dd@FreeBSD.org>2002-03-04 10:30:24 +0000
commit1998c28f4825f4d49fa9ebbac42d2b0aecfaeddd (patch)
tree257df04c7bf9e5b950adc46c8939fa5dbd0fb7e2 /etc/rc.network
parentea59de37336bda3c726b96819b4ae2541821ba93 (diff)
downloadsrc-1998c28f4825f4d49fa9ebbac42d2b0aecfaeddd.tar.gz
src-1998c28f4825f4d49fa9ebbac42d2b0aecfaeddd.zip
Redirect stdout of `ipf -y' to /dev/null. This removes a stray
"filter sync'd" in the middle of the boot output if IPFilter is enabled, but does not hide any potential errors, which go to stderr.
Notes
Notes: svn path=/head/; revision=91626
Diffstat (limited to 'etc/rc.network')
-rw-r--r--etc/rc.network2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.network b/etc/rc.network
index 303cd1fce7da..04824744316d 100644
--- a/etc/rc.network
+++ b/etc/rc.network
@@ -300,7 +300,7 @@ network_pass1() {
#
case ${ipfilter_active} in
[Yy][Ee][Ss])
- ${ipfilter_program:-/sbin/ipf} -y ${ipfilter_flags}
+ ${ipfilter_program:-/sbin/ipf} -y ${ipfilter_flags} >/dev/null
;;
esac
unset ipfilter_active