diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2013-03-13 15:46:30 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2013-03-13 15:46:30 +0000 |
commit | a95bb0d75b78b39df434d3014fe61f9608063aee (patch) | |
tree | 8222519526f929fa9c3ef8eaa7b75a1b3f1f479b /package/network/config/firewall3 | |
parent | 0e243585a561f1fa699687f364764254a14ec9ea (diff) | |
download | master-187ad058-a95bb0d75b78b39df434d3014fe61f9608063aee.tar.gz master-187ad058-a95bb0d75b78b39df434d3014fe61f9608063aee.tar.bz2 master-187ad058-a95bb0d75b78b39df434d3014fe61f9608063aee.zip |
firewall3: update to git head
* Adds support for emitting hotplug events when creating and clearing zones (fixes miniupnpd)
* Make NAT reflection direction configurable
* Map init script stop action to flush
* Map init script reload action to reload
* Respect init script disabled state in hotplug handler
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35998 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/network/config/firewall3')
-rw-r--r-- | package/network/config/firewall3/Makefile | 4 | ||||
-rw-r--r-- | package/network/config/firewall3/files/firewall.hotplug | 2 | ||||
-rwxr-xr-x | package/network/config/firewall3/files/firewall.init | 6 |
3 files changed, 9 insertions, 3 deletions
diff --git a/package/network/config/firewall3/Makefile b/package/network/config/firewall3/Makefile index 5b20dadefe..342f4ad58d 100644 --- a/package/network/config/firewall3/Makefile +++ b/package/network/config/firewall3/Makefile @@ -8,13 +8,13 @@ include $(TOPDIR)/rules.mk PKG_NAME:=firewall3 -PKG_VERSION:=2013-03-11 +PKG_VERSION:=2013-03-13 PKG_RELEASE:=$(PKG_SOURCE_VERSION) PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=git://nbd.name/firewall3.git PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) -PKG_SOURCE_VERSION:=87c4f12e16ae726e20774ee58468fa751a79a2c1 +PKG_SOURCE_VERSION:=ff9d5e13c9150c62fe698e4bc5541e6f92b241d0 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz PKG_MAINTAINER:=Jo-Philipp Wich <jow@openwrt.org> diff --git a/package/network/config/firewall3/files/firewall.hotplug b/package/network/config/firewall3/files/firewall.hotplug index dbb98cdcd2..34f3afec9b 100644 --- a/package/network/config/firewall3/files/firewall.hotplug +++ b/package/network/config/firewall3/files/firewall.hotplug @@ -2,6 +2,8 @@ [ "$ACTION" = ifup ] || exit 0 +/etc/init.d/firewall enabled || exit 0 + fw3 -q network "$INTERFACE" >/dev/null || exit 0 logger -t firewall "Reloading firewall due to ifup of $INTERFACE ($DEVICE)" diff --git a/package/network/config/firewall3/files/firewall.init b/package/network/config/firewall3/files/firewall.init index 8c1dbd94ca..64e3a8c12b 100755 --- a/package/network/config/firewall3/files/firewall.init +++ b/package/network/config/firewall3/files/firewall.init @@ -13,9 +13,13 @@ start() { } stop() { - fw3 stop + fw3 flush } restart() { fw3 restart } + +reload() { + fw3 reload +} |