[openwrt/openwrt] package/firewall: fix config typo

LEDE Commits lede-commits at lists.infradead.org
Thu Dec 12 03:17:20 PST 2024


blogic pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/3710323a469212ef0bbc5dc414895f6198edb67e

commit 3710323a469212ef0bbc5dc414895f6198edb67e
Author: Liangbin Lian <jjm2473 at gmail.com>
AuthorDate: Sun Dec 1 12:45:34 2024 +0800

    package/firewall: fix config typo
    
    change Support-UDP-Traceroute rule from 'enabled false' to 'enabled 0'
    
    Signed-off-by: Liangbin Lian <jjm2473 at gmail.com>
    
    Link: https://github.com/openwrt/openwrt/pull/17133
    Signed-off-by: John Crispin <john at phrozen.org>
---
 package/network/config/firewall/Makefile              | 2 +-
 package/network/config/firewall/files/firewall.config | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/network/config/firewall/Makefile b/package/network/config/firewall/Makefile
index a4b17f0b53..042883264d 100644
--- a/package/network/config/firewall/Makefile
+++ b/package/network/config/firewall/Makefile
@@ -9,7 +9,7 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=firewall
-PKG_RELEASE:=1
+PKG_RELEASE:=2
 
 PKG_SOURCE_PROTO:=git
 PKG_SOURCE_URL=$(PROJECT_GIT)/project/firewall3.git
diff --git a/package/network/config/firewall/files/firewall.config b/package/network/config/firewall/files/firewall.config
index b90ac7af0a..4c7ef8a96e 100644
--- a/package/network/config/firewall/files/firewall.config
+++ b/package/network/config/firewall/files/firewall.config
@@ -138,7 +138,7 @@ config rule
 	option proto		udp
 	option family		ipv4
 	option target		REJECT
-	option enabled		false
+	option enabled		0
 
 # include a file with users custom iptables rules
 config include




More information about the lede-commits mailing list