From: Jo-Philipp Wich Date: Sun, 19 Apr 2009 20:39:02 +0000 (+0000) Subject: [package] firewall: process custom rules after forwardings and redirects, this actual... X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=b3ebf7cbb1970140f2279c12956825cba3346990;p=openwrt%2Fsvn-archive%2Farchive.git [package] firewall: process custom rules after forwardings and redirects, this actually allows blocking traffic to certain hosts and other rules SVN-Revision: 15278 --- diff --git a/package/firewall/Makefile b/package/firewall/Makefile index 7aa385511f..dfbef6106d 100644 --- a/package/firewall/Makefile +++ b/package/firewall/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=firewall PKG_VERSION:=1 -PKG_RELEASE:=2 +PKG_RELEASE:=3 include $(INCLUDE_DIR)/package.mk diff --git a/package/firewall/files/uci_firewall.sh b/package/firewall/files/uci_firewall.sh index f6fa82b9cb..c197003595 100755 --- a/package/firewall/files/uci_firewall.sh +++ b/package/firewall/files/uci_firewall.sh @@ -401,12 +401,12 @@ fw_init() { config_foreach fw_defaults defaults echo "Loading zones" config_foreach fw_zone zone - echo "Loading rules" - config_foreach fw_rule rule echo "Loading forwarding" config_foreach fw_forwarding forwarding echo "Loading redirects" config_foreach fw_redirect redirect + echo "Loading rules" + config_foreach fw_rule rule echo "Loading includes" config_foreach fw_include include uci_set_state firewall core loaded 1