mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-07-29 18:01:55 +08:00
19 lines
600 B
Lua
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
|