Skip to content
Snippets Groups Projects
Commit 5b8e0448 authored by Nils Schneider's avatar Nils Schneider
Browse files

gluon-config-mode: fix wizard

Due to my previous two commits configmode was broken when either meshvpn
or bandwidth limit was disabled. This fixes it but there may be a
cleaner solution provided by luci.
parent 566faeb6
No related branches found
No related tags found
No related merge requests found
...@@ -69,12 +69,22 @@ function f.handle(self, state, data) ...@@ -69,12 +69,22 @@ function f.handle(self, state, data)
uci:save("autoupdater") uci:save("autoupdater")
uci:commit("autoupdater") uci:commit("autoupdater")
uci:set("gluon-simple-tc", meshvpn_name, "interface") -- checks for nil needed due to o:depends(...)
uci:set("gluon-simple-tc", meshvpn_name, "enabled", data._limit_enabled) if data._limit_enabled ~= nil then
uci:set("gluon-simple-tc", meshvpn_name, "ifname", "mesh-vpn") uci:set("gluon-simple-tc", meshvpn_name, "interface")
uci:set("gluon-simple-tc", meshvpn_name, "limit_ingress", data._limit_ingress) uci:set("gluon-simple-tc", meshvpn_name, "enabled", data._limit_enabled)
uci:set("gluon-simple-tc", meshvpn_name, "limit_egress", data._limit_egress) uci:set("gluon-simple-tc", meshvpn_name, "ifname", "mesh-vpn")
uci:commit("gluon-simple-tc")
if data._limit_ingress ~= nil then
uci:set("gluon-simple-tc", meshvpn_name, "limit_ingress", data._limit_ingress)
end
if data._limit_egress ~= nil then
uci:set("gluon-simple-tc", meshvpn_name, "limit_egress", data._limit_egress)
end
uci:commit("gluon-simple-tc")
end
uci:set("fastd", meshvpn_name, "enabled", data._meshvpn) uci:set("fastd", meshvpn_name, "enabled", data._meshvpn)
uci:save("fastd") uci:save("fastd")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment