diff --git a/Shorewall/Makefile b/Shorewall/Makefile index 948efb60a..b25fd0163 100644 --- a/Shorewall/Makefile +++ b/Shorewall/Makefile @@ -2,7 +2,6 @@ # Shorewall -- /etc/shorewall/Makefile # # Reload Shorewall if config files are updated. -# If reloading fails, restore old settings. SWBIN ?= /sbin/shorewall -q CONFDIR ?= /etc/shorewall @@ -16,7 +15,6 @@ $(SWSTATE): $(CONFDIR)/* if [ $$? -eq 0 ]; then \ $(SWBIN) save >/dev/null; \ else \ - $(SWBIN) restore >/dev/null 2>&1; \ echo "$${RESULT}" >&2; \ false; \ fi diff --git a/Shorewall6/Makefile b/Shorewall6/Makefile index dbb1679ce..5a9d08da4 100644 --- a/Shorewall6/Makefile +++ b/Shorewall6/Makefile @@ -2,7 +2,6 @@ # Shorewall6 -- /etc/shorewall6/Makefile # # Reload Shorewall6 if config files are updated. -# If reloading fails, restore old settings. SWBIN ?= /sbin/shorewall6 -q CONFDIR ?= /etc/shorewall6 @@ -16,7 +15,6 @@ $(SWSTATE): $(CONFDIR)/* if [ $$? -eq 0 ]; then \ $(SWBIN) save >/dev/null; \ else \ - $(SWBIN) restore >/dev/null 2>&1; \ echo "$${RESULT}" >&2; \ false; \ fi