From 33981af53d1c199e9a28e9820823016b8aa5f726 Mon Sep 17 00:00:00 2001 From: teastep Date: Wed, 1 Mar 2006 18:02:52 +0000 Subject: [PATCH] Avoid 'delete_nat doesn't exist' Errors -- Take 3 git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@3614 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- Shorewall/compiler | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shorewall/compiler b/Shorewall/compiler index 44470aaed..adc31751c 100755 --- a/Shorewall/compiler +++ b/Shorewall/compiler @@ -8134,10 +8134,10 @@ stop_firewall() { if [ -f /var/lib/shorewall/nat ]; then while read external interface; do - qt ip addr del $external dev \$interface + qt ip addr del \$external dev \$interface done < /var/lib/shorewall/nat - rm -f {/var/lib/shorewall}/nat + rm -f /var/lib/shorewall/nat fi }