diff options
author | John Crispin <blogic@openwrt.org> | 2008-08-27 16:48:54 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2008-08-27 16:48:54 +0000 |
commit | 1392ad82ec9309169306da05b84caa072bb4414a (patch) | |
tree | 2312b6aeb7e15e095851152030bc27b7dc41c59e /package | |
parent | 66c129b027667e0e4da6696e95c4adb835fd323a (diff) | |
download | upstream-1392ad82ec9309169306da05b84caa072bb4414a.tar.gz upstream-1392ad82ec9309169306da05b84caa072bb4414a.tar.bz2 upstream-1392ad82ec9309169306da05b84caa072bb4414a.zip |
make sure uci firewall reverts its states when stopped
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12403 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rwxr-xr-x | package/firewall/files/uci_firewall.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/firewall/files/uci_firewall.sh b/package/firewall/files/uci_firewall.sh index ca5d51267e..5063d9e088 100755 --- a/package/firewall/files/uci_firewall.sh +++ b/package/firewall/files/uci_firewall.sh @@ -323,4 +323,5 @@ fw_stop() { $IPTABLES -P INPUT ACCEPT $IPTABLES -P OUTPUT ACCEPT $IPTABLES -P FORWARD ACCEPT + uci_revert_state firewall core } |