mini: Force network interface to not be removable

This commit is contained in:
Steven Barth 2008-08-28 19:33:17 +00:00
parent 4ca6f02af2
commit 3dea61aaa3

View 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"))