From: jow 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-Url: https://git.archive.openwrt.org/?p=openwrt.git;a=commitdiff_plain;h=773909e04a3dfb0c0676f168479d06daed95520a firewall3: use list notation for default zone network config to avoid "uci add_list" coercing the value wrongly git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36806 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- 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