mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-09-11 10:54:46 +08:00
20 lines
708 B
Lua
20 lines
708 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
|
|
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
|