mini: Force network interface to not be removable
authorSteven Barth <steven@midlink.org>
Thu, 28 Aug 2008 19:33:17 +0000 (19:33 +0000)
committerSteven Barth <steven@midlink.org>
Thu, 28 Aug 2008 19:33:17 +0000 (19:33 +0000)
modules/admin-mini/luasrc/model/cbi/mini/network.lua

index 4289f35..e4dd2ca 100644 (file)
@@ -78,6 +78,7 @@ end
 
 
 s = m:section(NamedSection, "lan", "interface", translate("m_n_local"))
+s.addremove = false
 s:option(Value, "ipaddr", translate("ipaddress"))
 
 nm = s:option(Value, "netmask", translate("netmask"))
@@ -92,6 +93,7 @@ dns.rmempty = true
 
 
 s = m:section(NamedSection, "wan", "interface", translate("m_n_inet"))
+s.addremove = false
 p = s:option(ListValue, "proto", translate("protocol"))
 p:value("none", "disabled")
 p:value("static", translate("manual", "manual"))