[source] igmpproxy: remove firewall rules when service is stopped
LEDE Commits
lede-commits at lists.infradead.org
Tue Nov 14 13:01:58 PST 2017
dedeckeh pushed a commit to source.git, branch master:
https://git.lede-project.org/31ebbe34ccc066c212ef20de0856ab3a428fb801
commit 31ebbe34ccc066c212ef20de0856ab3a428fb801
Author: Hans Dedecker <dedeckeh at gmail.com>
AuthorDate: Mon Nov 13 22:33:48 2017 +0100
igmpproxy: remove firewall rules when service is stopped
Remove multicast routing firewall rules when the igmpproxy is stopped by
triggering a firewall config change.
Keeping the firewall open from the wan for igmp and udp multicast is not
desired when the igmpproxy service is inactive.
Signed-off-by: Hans Dedecker <dedeckeh at gmail.com>
---
package/network/services/igmpproxy/Makefile | 2 +-
package/network/services/igmpproxy/files/igmpproxy.init | 4 ++++
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/package/network/services/igmpproxy/Makefile b/package/network/services/igmpproxy/Makefile
index d07fe66..38efabe 100644
--- a/package/network/services/igmpproxy/Makefile
+++ b/package/network/services/igmpproxy/Makefile
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=igmpproxy
PKG_VERSION:=0.1
-PKG_RELEASE:=9
+PKG_RELEASE:=10
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/igmpproxy
diff --git a/package/network/services/igmpproxy/files/igmpproxy.init b/package/network/services/igmpproxy/files/igmpproxy.init
index 9f4e51a..4038545 100644
--- a/package/network/services/igmpproxy/files/igmpproxy.init
+++ b/package/network/services/igmpproxy/files/igmpproxy.init
@@ -132,3 +132,7 @@ start_service() {
service_started() {
procd_set_config_changed firewall
}
+
+stop_service() {
+ procd_set_config_changed firewall
+}
More information about the lede-commits
mailing list