summaryrefslogtreecommitdiff
path: root/package/iptables/files/firewall6.init
diff options
context:
space:
mode:
Diffstat (limited to 'package/iptables/files/firewall6.init')
-rwxr-xr-xpackage/iptables/files/firewall6.init32
1 files changed, 0 insertions, 32 deletions
diff --git a/package/iptables/files/firewall6.init b/package/iptables/files/firewall6.init
deleted file mode 100755
index 55631ecc9..000000000
--- a/package/iptables/files/firewall6.init
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-#PKG ip6tables
-#INIT 45
-. /etc/rc.conf
-
-case $1 in
-autostop) ;;
-autostart)
- test x"${firewall6:-NO}" = x"NO" && exit 0
- test x"$firewall6" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start
- exec sh $0 start
- ;;
-start)
- . /etc/firewall6.conf
- ;;
-stop)
- ### Clear tables
- ip6tables -F
- ip6tables -X
- ip6tables -P INPUT ACCEPT
- ip6tables -P FORWARD ACCEPT
- ip6tables -P OUTPUT ACCEPT
- ;;
-restart)
- sh $0 stop
- sh $0 start
- ;;
-*)
- echo "Usage: $0 {start | stop | restart}"
- ;;
-esac
-exit $?