diff options
Diffstat (limited to 'core/conf/rc.d/iptables')
-rw-r--r-- | core/conf/rc.d/iptables | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/core/conf/rc.d/iptables b/core/conf/rc.d/iptables deleted file mode 100644 index 44f6bb2..0000000 --- a/core/conf/rc.d/iptables +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -case $1 in - start) - echo "clear all iptables tables" - #nohup bash /etc/iptables/ipt-start.sh & - nohup bash /etc/iptables/ipt-start.sh & - ;; - stop) - echo "clear all iptables tables" - nohup bash /etc/iptables/ipt-stop.sh & - ;; - restart) - $0 start - ;; - status) - /usr/sbin/iptables -L -n -v - ;; - *) - echo "Usage: $0 [start|stop]" - ;; -esac |