aboutsummaryrefslogtreecommitdiff
path: root/etc/rc.firewall6
diff options
context:
space:
mode:
authorGregory Neil Shapiro <gshapiro@FreeBSD.org>2001-04-13 01:40:27 +0000
committerGregory Neil Shapiro <gshapiro@FreeBSD.org>2001-04-13 01:40:27 +0000
commit584096c53ec41098bd821e046d3d571bacddf4f1 (patch)
treed86f50139718f1478d27e3b9c92eb07f7891a68c /etc/rc.firewall6
parent3371e17cb63dcc6b880f287fba69093fbb85d3dd (diff)
downloadsrc-584096c53ec41098bd821e046d3d571bacddf4f1.tar.gz
src-584096c53ec41098bd821e046d3d571bacddf4f1.zip
With the recent change to ip6fw, it is safe to return to using ${fw6cmd}
which may include the -q flag.
Notes
Notes: svn path=/head/; revision=75455
Diffstat (limited to 'etc/rc.firewall6')
-rw-r--r--etc/rc.firewall63
1 files changed, 1 insertions, 2 deletions
diff --git a/etc/rc.firewall6 b/etc/rc.firewall6
index a83daedbfa89..646d3d11c1d2 100644
--- a/etc/rc.firewall6
+++ b/etc/rc.firewall6
@@ -253,8 +253,7 @@ case ${ipv6_firewall_type} in
;;
*)
if [ -r "${ipv6_firewall_type}" ]; then
- # Can't use ${fw6cmd} as ip6fw doesn't support -q with a file
- /sbin/ip6fw ${ipv6_firewall_flags} ${ipv6_firewall_type}
+ ${fw6cmd} ${ipv6_firewall_flags} ${ipv6_firewall_type}
fi
;;
esac