diff options
author | Silvino Silva <silvino@bk.ru> | 2021-02-12 03:59:34 +0000 |
---|---|---|
committer | Silvino Silva <silvino@bk.ru> | 2021-02-12 03:59:34 +0000 |
commit | a3628fc49db4d88ff3e4067268650710d1da3f6f (patch) | |
tree | 8fdac6dfc8cabb9f85a2db3a3bd628cfe44438cd /core/conf/rc.d/iptables | |
parent | 0a6b0fc9769daf0932cb207c3285baa31547b489 (diff) | |
download | doc-a3628fc49db4d88ff3e4067268650710d1da3f6f.tar.gz |
initial openbsd support
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 |