update 2026-05-13 01:55:45

This commit is contained in:
action
2026-05-13 01:55:45 +08:00
parent 1b6001bfed
commit 6f4a0231c5
1857 changed files with 749084 additions and 99 deletions
@@ -0,0 +1,16 @@
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