summaryrefslogtreecommitdiff
path: root/package/shorewall-common/files/shorewall.init
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-06-04 11:09:41 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2015-06-04 12:18:47 +0200
commitb24705ef52d78da83e1c443cbcf9a0483e5e9a85 (patch)
treea566a30fdf3b393fcea3266040d2bf82ae53e59a /package/shorewall-common/files/shorewall.init
parente0289759cb1fdc5912c5dbcc134a4955b814f98a (diff)
remove unused and unmaintained package
Diffstat (limited to 'package/shorewall-common/files/shorewall.init')
-rw-r--r--package/shorewall-common/files/shorewall.init35
1 files changed, 0 insertions, 35 deletions
diff --git a/package/shorewall-common/files/shorewall.init b/package/shorewall-common/files/shorewall.init
deleted file mode 100644
index 5c5a4660a..000000000
--- a/package/shorewall-common/files/shorewall.init
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/sh
-#PKG shorewall-common
-#INIT 45
-. /etc/rc.conf
-
-case $1 in
-autostop) ;;
-autostart)
- test x"${shorewall:-NO}" != x"YES" && exit 0
- test x"$shorewall" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start
- exec sh $0 start
- ;;
-start)
- touch /var/log/messages
- mkdir -p /var/lock/subsys
- /sbin/shorewall -f start 1>/dev/null
- ;;
-stop)
- /sbin/shorewall stop 1>/dev/null
- ;;
-restart)
- if [ -f /var/lib/shorewall/restore ] ; then
- /sbin/shorewall restore
- else
- /sbin/shorewall restart 1>/dev/null
- fi
- ;;
-clear)
- /sbin/shorewall clear
- ;;
-*)
- echo "Usage: $0 {start|stop|restart|clear}"
- ;;
-esac
-exit $?