small-packages/liep/luci-app-control-timewol/luasrc/controller/timewol.lua
2026-05-10 09:48:30 +08:00

19 lines
600 B
Lua

module("luci.controller.timewol", package.seeall)
function index()
if not nixio.fs.access("/etc/config/luci-app-control-timewol") then
return
end
entry({"admin", "control"}, firstchild(), "Control", 44).dependent = false
entry({"admin", "control", "timewol"}, cbi("timewol"), _("Timed Wakeup"), 95).dependent = true
entry({"admin", "control", "timewol", "status"}, call("status")).leaf = true
end
function status()
local e = {}
e.status = luci.sys.call("cat /etc/crontabs/root | grep etherwake >/dev/null") == 0
luci.http.prepare_content("application/json")
luci.http.write_json(e)
end