small-packages/liep/luci-app-timecontrol/luasrc/controller/timecontrol.lua
2026-05-13 01:55:45 +08:00

17 lines
644 B
Lua

module("luci.controller.timecontrol", package.seeall)
function index()
if not nixio.fs.access("/etc/config/luci-app-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 -w -L FORWARD | grep TIMECONTROL >/dev/null") == 0
luci.http.prepare_content("application/json")
luci.http.write_json(e)
end