From: Greg Brockman Date: Mon, 18 Jan 2010 08:32:44 +0000 (-0500) Subject: Make sed not hang when there are no firewall files X-Git-Tag: 0.0.1~1 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-iptables.git/commitdiff_plain/f6018a89e009ba37057d6b4e0b68867479c4e774 Make sed not hang when there are no firewall files svn path=/trunk/packages/invirt-iptables/; revision=2905 --- diff --git a/debian/changelog b/debian/changelog index 493d73e..404419b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +invirt-iptables (1.0.1) unstable; urgency=low + + * Make sed not hang when there are no firewall files + + -- Greg Brockman Mon, 18 Jan 2010 03:30:21 -0500 + invirt-iptables (1) unstable; urgency=low * Initial Release. diff --git a/debian/invirt-iptables.init b/debian/invirt-iptables.init index e2b8c6f..ca3e6f8 100755 --- a/debian/invirt-iptables.init +++ b/debian/invirt-iptables.init @@ -22,10 +22,14 @@ do_start() { echo 1 > /proc/sys/net/ipv4/ip_forward - for table in $(sed -ne 's/^*//p' $(run-parts --list "$RULES")); do - iptables -t "$table" -F - done - cat $(run-parts --list "$RULES") | iptables-restore -n + list=$(run-parts --list "$RULES") + + if [ ! -z "$list" ]; then + for table in $(sed -ne 's/^*//p' $list); do + iptables -t "$table" -F + done + cat $list | iptables-restore -n + fi } do_reload()