From 77dda8d67ac852b73bf60c8dec0fbb958168b7ea Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Tue, 20 Dec 2011 01:10:15 +0000 Subject: firewall: - introduce per-section "option enabled" which defaults to "1" - useful to disable rules or zones without having to delete them - annotate default traffic rules with names - bump version SVN-Revision: 29577 --- package/firewall/files/lib/config.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'package/firewall/files/lib/config.sh') diff --git a/package/firewall/files/lib/config.sh b/package/firewall/files/lib/config.sh index 996cef884d..8b2399fc8e 100644 --- a/package/firewall/files/lib/config.sh +++ b/package/firewall/files/lib/config.sh @@ -34,7 +34,11 @@ fw_config_get_section() { # ... export ${NO_EXPORT:+-n} -- "${prefix}NAME"="${config}" config_get "${prefix}TYPE" "$config" TYPE } - + + local enabled + config_get_bool enabled "$config" enabled 1 + [ $enabled -eq 1 ] || return 1 + [ "$1" == '{' ] && shift while [ $# -ge 3 ]; do local type=$1 -- cgit v1.2.3