aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorGregory Neil Shapiro <gshapiro@FreeBSD.org>2001-02-28 06:51:17 +0000
committerGregory Neil Shapiro <gshapiro@FreeBSD.org>2001-02-28 06:51:17 +0000
commit872880c2c055ca997a3564ec4f7a01ab7665526b (patch)
tree67916c3e5719b43d1da86605886d295805883c7b /etc
parentd325cf65808a99b5781ce72f587b3a928069cae1 (diff)
Notes
Diffstat (limited to 'etc')
-rw-r--r--etc/rc.firewall63
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/rc.firewall6 b/etc/rc.firewall6
index 646d3d11c1d21..a83daedbfa89f 100644
--- a/etc/rc.firewall6
+++ b/etc/rc.firewall6
@@ -253,7 +253,8 @@ case ${ipv6_firewall_type} in
;;
*)
if [ -r "${ipv6_firewall_type}" ]; then
- ${fw6cmd} ${ipv6_firewall_flags} ${ipv6_firewall_type}
+ # Can't use ${fw6cmd} as ip6fw doesn't support -q with a file
+ /sbin/ip6fw ${ipv6_firewall_flags} ${ipv6_firewall_type}
fi
;;
esac