small-package/luci-app-timecontrol/luasrc/controller/timecontrol.lua

18 lines
640 B
Lua

module("luci.controller.timecontrol", package.seeall)
function index()
if not nixio.fs.access("/etc/config/timecontrol") then return end
entry({"admin", "control"}, firstchild(), "Control", 44).dependent = false
entry({"admin", "control", "timecontrol"}, cbi("timecontrol"), _("Internet Time Control"), 10).dependent =
true
entry({"admin", "control", "timecontrol", "status"}, call("status")).leaf = true
end
function status()
local e = {}
e.status = luci.sys.call("iptables -L FORWARD | grep TIMECONTROL >/dev/null") == 0
luci.http.prepare_content("application/json")
luci.http.write_json(e)
end