From: Jo-Philipp Wich Date: Fri, 31 May 2013 13:23:23 +0000 (+0000) Subject: firewall3: use list notation for default zone network config to avoid "uci add_list... X-Git-Tag: reboot~10314 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=3bb397c99700b4645445cc0cc0955078a7b35d02;p=openwrt%2Fopenwrt.git firewall3: use list notation for default zone network config to avoid "uci add_list" coercing the value wrongly SVN-Revision: 36806 --- diff --git a/package/network/config/firewall3/files/firewall.config b/package/network/config/firewall3/files/firewall.config index 59a45b208d..acfb5e5abd 100644 --- a/package/network/config/firewall3/files/firewall.config +++ b/package/network/config/firewall3/files/firewall.config @@ -8,14 +8,15 @@ config defaults config zone option name lan - option network 'lan' + list network 'lan' option input ACCEPT option output ACCEPT option forward REJECT config zone option name wan - option network 'wan wan6' + list network 'wan' + list network 'wan6' option input REJECT option output ACCEPT option forward REJECT