Browse Source

gluon-core: upgrade/110-network: fix formatting

Matthias Schiffer 6 years ago
parent
commit
09c2e60cd4
1 changed files with 46 additions and 58 deletions
  1. 46 58
      package/gluon-core/luasrc/lib/gluon/upgrade/110-network

+ 46 - 58
package/gluon-core/luasrc/lib/gluon/upgrade/110-network

@@ -5,78 +5,66 @@ local sysctl = require 'gluon.sysctl'
 local sysconfig = require 'gluon.sysconfig'
 
 
-uci:section('network', 'interface', 'wan',
-	    {
-	      ifname = sysconfig.wan_ifname,
-	      type = 'bridge',
-	      igmp_snooping = true,
-	      multicast_querier = false,
-	      peerdns = false,
-	      auto = true,
-	    }
-)
+uci:section('network', 'interface', 'wan', {
+	ifname = sysconfig.wan_ifname,
+	type = 'bridge',
+	igmp_snooping = true,
+	multicast_querier = false,
+	peerdns = false,
+	auto = true,
+})
 
 if not uci:get('network', 'wan', 'proto') then
-  uci:set('network', 'wan', 'proto', 'dhcp')
+	uci:set('network', 'wan', 'proto', 'dhcp')
 end
 
 
-uci:section('network', 'interface', 'wan6',
-	    {
-	      ifname = 'br-wan',
-	      peerdns = false,
-	      ip6table = 1,
-	      sourcefilter = false,
-	    }
-)
+uci:section('network', 'interface', 'wan6', {
+	ifname = 'br-wan',
+	peerdns = false,
+	ip6table = 1,
+	sourcefilter = false,
+})
 
 if not uci:get('network', 'wan6', 'proto') then
-  uci:set('network', 'wan6', 'proto', 'dhcpv6')
+	uci:set('network', 'wan6', 'proto', 'dhcpv6')
 end
 
 
-uci:section('network', 'rule6', 'wan6_lookup',
-	    {
-	       mark = '0x01/0x01',
-	       lookup = 1,
-	    }
-)
-
-uci:section('network', 'route6', 'wan6_unreachable',
-	    {
-	       type = 'unreachable',
-	       interface = 'loopback',
-	       target = '::/0',
-	       gateway = '::',
-	       table = 1,
-	       metric = 65535,
-	    }
-)
+uci:section('network', 'rule6', 'wan6_lookup', {
+	mark = '0x01/0x01',
+	lookup = 1,
+})
+
+uci:section('network', 'route6', 'wan6_unreachable', {
+	type = 'unreachable',
+	interface = 'loopback',
+	target = '::/0',
+	gateway = '::',
+	table = 1,
+	metric = 65535,
+})
 
 uci:save('network')
 
 
-uci:section('firewall', 'rule', 'wan_igmp',
-	    {
-	       name = 'Allow-IGMP',
-	       src = 'wan',
-	       proto = 'igmp',
-	       family = 'ipv4',
-	       target = 'ACCEPT',
-	    }
-)
-
-uci:section('firewall', 'rule', 'wan_mld',
-	    {
-	       name = 'Allow-MLD',
-	       src = 'wan',
-	       proto = 'icmp',
-	       src_ip = 'fe80::/10',
-	       icmp_type = { '130/0', '131/0', '132/0', '143/0', },
-	       family = 'ipv6',
-	       target = 'ACCEPT',
-	    }
-)
+uci:section('firewall', 'rule', 'wan_igmp', {
+	name = 'Allow-IGMP',
+	src = 'wan',
+	proto = 'igmp',
+	family = 'ipv4',
+	target = 'ACCEPT',
+})
+
+uci:section('firewall', 'rule', 'wan_mld', {
+	name = 'Allow-MLD',
+	src = 'wan',
+	proto = 'icmp',
+	src_ip = 'fe80::/10',
+	icmp_type = { '130/0', '131/0', '132/0', '143/0', },
+	family = 'ipv6',
+	target = 'ACCEPT',
+})
 
 uci:save('firewall')