mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 14:23:38 +00:00
19 lines
481 B
Lua
19 lines
481 B
Lua
|
|
module("luci.controller.adbyby", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/adbyby") then
|
|
return
|
|
end
|
|
|
|
entry({"admin", "services", "adbyby"}, cbi("adbyby"), _("ADBYBY Plus +"), 10).dependent = true
|
|
entry({"admin","services","adbyby","status"},call("act_status")).leaf=true
|
|
end
|
|
|
|
function act_status()
|
|
local e={}
|
|
e.running=luci.sys.call("pgrep adbyby >/dev/null")==0
|
|
luci.http.prepare_content("application/json")
|
|
luci.http.write_json(e)
|
|
end
|