Last change
on this file since 2916 was
2905,
checked in by gdb, 15 years ago
|
Make sed not hang when there are no firewall files
|
-
Property svn:executable set to
*
|
File size:
821 bytes
|
Rev | Line | |
---|
[2861] | 1 | #! /bin/sh |
---|
| 2 | ### BEGIN INIT INFO |
---|
| 3 | # Provides: invirt-iptables |
---|
| 4 | # Required-Start: $local_fs $remote_fs |
---|
| 5 | # Required-Stop: $local_fs $remote_fs |
---|
| 6 | # Default-Start: 2 3 4 5 |
---|
| 7 | # Default-Stop: 0 1 6 |
---|
| 8 | # Short-Description: Invirt iptables rules |
---|
| 9 | # Description: |
---|
| 10 | ### END INIT INFO |
---|
| 11 | |
---|
| 12 | NAME=invirt-iptables |
---|
| 13 | DESC="Invirt iptables rules" |
---|
[2862] | 14 | RULES=/etc/invirt-iptables/rules.d |
---|
[2861] | 15 | PATH=/sbin:/usr/sbin:/bin:/usr/bin |
---|
| 16 | |
---|
| 17 | dpkg -s "$NAME" >/dev/null 2>/dev/null || exit 0 |
---|
| 18 | |
---|
| 19 | . /lib/init/std-init.sh |
---|
| 20 | |
---|
| 21 | do_start() |
---|
| 22 | { |
---|
| 23 | echo 1 > /proc/sys/net/ipv4/ip_forward |
---|
| 24 | |
---|
[2905] | 25 | list=$(run-parts --list "$RULES") |
---|
| 26 | |
---|
| 27 | if [ ! -z "$list" ]; then |
---|
| 28 | for table in $(sed -ne 's/^*//p' $list); do |
---|
| 29 | iptables -t "$table" -F |
---|
| 30 | done |
---|
| 31 | cat $list | iptables-restore -n |
---|
| 32 | fi |
---|
[2861] | 33 | } |
---|
| 34 | |
---|
| 35 | do_reload() |
---|
| 36 | { |
---|
| 37 | do_start |
---|
| 38 | } |
---|
| 39 | |
---|
| 40 | do_stop() |
---|
| 41 | { |
---|
| 42 | return 0 |
---|
| 43 | } |
---|
| 44 | |
---|
| 45 | std_init "$1" |
---|
Note: See
TracBrowser
for help on using the repository browser.