1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-03-09 15:40:03 +00:00

Fix on label

This commit is contained in:
Ycarus (Yannick Chabanois) 2020-03-09 21:59:36 +01:00
parent 3b1b376f00
commit 388c131f96
2 changed files with 9 additions and 1 deletions

View file

@ -196,6 +196,12 @@ function wizard_add()
ucic:delete("qos",intf)
ucic:save("qos")
ucic:commit("qos")
ucic:delete("openmptcprouter",intf)
ucic:save("openmptcprouter")
ucic:commit("openmptcprouter")
ucic:delete("macvlan",intf)
ucic:save("macvlan")
ucic:commit("macvlan")
if defif ~= nil and defif ~= "" then
luci.sys.call("uci -q del_list vnstat.@vnstat[-1].interface=" .. defif)
end
@ -209,6 +215,7 @@ function wizard_add()
-- Set interfaces settings
local interfaces = luci.http.formvaluetable("intf")
for intf, _ in pairs(interfaces) do
local label = luci.http.formvalue("cbid.network.%s.label" % intf) or ""
local proto = luci.http.formvalue("cbid.network.%s.proto" % intf) or "static"
local ipaddr = luci.http.formvalue("cbid.network.%s.ipaddr" % intf) or ""
local netmask = luci.http.formvalue("cbid.network.%s.netmask" % intf) or ""
@ -217,6 +224,7 @@ function wizard_add()
if proto ~= "other" then
ucic:set("network",intf,"proto",proto)
end
ucic:set("network",intf,"label",label)
ucic:set("network",intf,"ipaddr",ipaddr)
ucic:set("network",intf,"netmask",netmask)
ucic:set("network",intf,"gateway",gateway)