summaryrefslogtreecommitdiff
path: root/package/shorewall-common/files
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
parente0289759cb1fdc5912c5dbcc134a4955b814f98a (diff)
remove unused and unmaintained package
Diffstat (limited to 'package/shorewall-common/files')
-rw-r--r--package/shorewall-common/files/downstrip7
-rw-r--r--package/shorewall-common/files/shorewall-common.conffiles33
-rw-r--r--package/shorewall-common/files/shorewall-common.postinst5
-rw-r--r--package/shorewall-common/files/shorewall-common.prerm8
-rw-r--r--package/shorewall-common/files/shorewall.init35
5 files changed, 0 insertions, 88 deletions
diff --git a/package/shorewall-common/files/downstrip b/package/shorewall-common/files/downstrip
deleted file mode 100644
index 040eded62..000000000
--- a/package/shorewall-common/files/downstrip
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/sh
-
-cd $1
-for i in $( ls -1 $1 |grep -v ".template"); do
- sed -e '/^$/d' -e '/^#$/d' -e '/^#[^!]/d' -e '/^[ *]$/d' -e 's/\t/ /g' -i $i
-done
-
diff --git a/package/shorewall-common/files/shorewall-common.conffiles b/package/shorewall-common/files/shorewall-common.conffiles
deleted file mode 100644
index 99893804c..000000000
--- a/package/shorewall-common/files/shorewall-common.conffiles
+++ /dev/null
@@ -1,33 +0,0 @@
-/etc/shorewall/Makefile
-/etc/shorewall/accounting
-/etc/shorewall/actions
-/etc/shorewall/blacklist
-/etc/shorewall/continue
-/etc/shorewall/ecn
-/etc/shorewall/hosts
-/etc/shorewall/init
-/etc/shorewall/initdone
-/etc/shorewall/interfaces
-/etc/shorewall/ipsec
-/etc/shorewall/maclist
-/etc/shorewall/masq
-/etc/shorewall/nat
-/etc/shorewall/netmap
-/etc/shorewall/params
-/etc/shorewall/policy
-/etc/shorewall/providers
-/etc/shorewall/proxyarp
-/etc/shorewall/route_rules
-/etc/shorewall/routestopped
-/etc/shorewall/rules
-/etc/shorewall/shorewall.conf
-/etc/shorewall/start
-/etc/shorewall/started
-/etc/shorewall/stop
-/etc/shorewall/stopped
-/etc/shorewall/tcclasses
-/etc/shorewall/tcdevices
-/etc/shorewall/tcrules
-/etc/shorewall/tos
-/etc/shorewall/tunnels
-/etc/shorewall/zones
diff --git a/package/shorewall-common/files/shorewall-common.postinst b/package/shorewall-common/files/shorewall-common.postinst
deleted file mode 100644
index 7b1c5e5cc..000000000
--- a/package/shorewall-common/files/shorewall-common.postinst
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-. $IPKG_INSTROOT/etc/functions.sh
-add_rcconf shorewall NO
-mkdir -p $IPKG_INSTROOT/usr/share/shorewall/runtime
-chmod 0700 $IPKG_INSTROOT/usr/share/shorewall/runtime
diff --git a/package/shorewall-common/files/shorewall-common.prerm b/package/shorewall-common/files/shorewall-common.prerm
deleted file mode 100644
index 805b69980..000000000
--- a/package/shorewall-common/files/shorewall-common.prerm
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-
-# commented out: we never change this information ourselves
-# plus: this will destroy /etc/rc.conf entirely.
-# read some info about shell redirections if you don’t know why.
-#cat $IPKG_INSTROOT/etc/rc.conf | grep -v "shorewall" >$IPKG_INSTROOT/etc/rc.conf
-
-rm -rf /usr/share/shorewall/runtime
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 $?