diff options
author | cyrus <cyrus@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-10-23 10:25:26 +0000 |
---|---|---|
committer | cyrus <cyrus@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-10-23 10:25:26 +0000 |
commit | bfe87cb72af4b8316a5aa0108d94314cd28acd3e (patch) | |
tree | 89647c21303b7595f26bc9204edb8f6bb6120042 /package/network/config/firewall/files | |
parent | 04d5528a317b8dbedcab24ba736a06ba1e4e7dae (diff) |
firewall: Improve ubus support
* Use network.interface dump call instead of individual status calls
to reduce overall netifd lookups and invokes to 1 per fw3 process.
* Allow protocol handlers to assign a firewall zone for an interface
in the data section to allow for dynamic firewall zone assignment.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38504 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/network/config/firewall/files')
-rw-r--r-- | package/network/config/firewall/files/firewall.hotplug | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/config/firewall/files/firewall.hotplug b/package/network/config/firewall/files/firewall.hotplug index 34f3afec9b..20a95d4363 100644 --- a/package/network/config/firewall/files/firewall.hotplug +++ b/package/network/config/firewall/files/firewall.hotplug @@ -1,6 +1,6 @@ #!/bin/sh -[ "$ACTION" = ifup ] || exit 0 +[ "$ACTION" = ifup -o "$ACTION" = ifupdate ] || exit 0 /etc/init.d/firewall enabled || exit 0 |