💋 Sync 2026-09-07 03:05:06
Merge-upstream / merge (push) Canceled after 0s

This commit is contained in:
github-actions[bot]
2026-09-07 03:05:06 +08:00
parent 95ded25b90
commit 6348b68a14
22 changed files with 428 additions and 1918 deletions
@@ -0,0 +1,19 @@
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
local page = entry({"admin", "control", "timecontrol"}, cbi("timecontrol"), _("Internet Time Control"))
page.order = 10
page.dependent = true
page.acl_depends = { "luci-app-timecontrol" }
entry({"admin", "control", "timecontrol", "status"}, call("status")).leaf = true
end
function status()
local e = {}
e.status = luci.sys.call("/etc/init.d/timecontrol status >/dev/null 2>&1") == 0
luci.http.prepare_content("application/json")
luci.http.write_json(e)
end