diff options
author | wbx <wbx@hydrogenium.(none)> | 2009-05-17 14:41:34 +0200 |
---|---|---|
committer | wbx <wbx@hydrogenium.(none)> | 2009-05-17 14:41:34 +0200 |
commit | 219a6dab8995aad9ac4860cc1a84d6f3509a03a4 (patch) | |
tree | b9c0f3c43aebba2fcfef777592d0add39f2072f4 /package/shorewall-common/files |
Initial import
Diffstat (limited to 'package/shorewall-common/files')
-rw-r--r-- | package/shorewall-common/files/downstrip | 7 | ||||
-rw-r--r-- | package/shorewall-common/files/shorewall.init | 33 |
2 files changed, 40 insertions, 0 deletions
diff --git a/package/shorewall-common/files/downstrip b/package/shorewall-common/files/downstrip new file mode 100644 index 000000000..040eded62 --- /dev/null +++ b/package/shorewall-common/files/downstrip @@ -0,0 +1,7 @@ +#!/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.init b/package/shorewall-common/files/shorewall.init new file mode 100644 index 000000000..c2800f732 --- /dev/null +++ b/package/shorewall-common/files/shorewall.init @@ -0,0 +1,33 @@ +#!/bin/sh +#FWINIT 45 +. /etc/rc.conf + +case $1 in +autostop) ;; +autostart) + test x"$shorewall" != x"YES" && exit 0 + 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 $? |