* remove needless 'automatic' and 'trigger' options plus small fixes Signed-off-by: Dirk Brenken <dev@brenken.org>
14 lines
487 B
Lua
14 lines
487 B
Lua
-- Copyright 2017 Dirk Brenken (dev@brenken.org)
|
|
-- This is free software, licensed under the Apache License, Version 2.0
|
|
|
|
local uci = require("luci.model.uci").cursor()
|
|
local http = require("luci.http")
|
|
local cfg = http.formvalue("cfg")
|
|
|
|
if cfg ~= nil then
|
|
uci:delete("wireless", cfg)
|
|
uci:save("wireless")
|
|
uci:commit("wireless")
|
|
luci.sys.call("env -i /bin/ubus call network reload >/dev/null 2>&1")
|
|
end
|
|
http.redirect(luci.dispatcher.build_url("admin/services/travelmate/stations"))
|