2021-09-29 21:52:27 +08:00

23 lines
516 B
Lua
Executable File

module("luci.controller.ddnsto", package.seeall)
function index()
if not nixio.fs.access("/etc/config/ddnsto") then
return
end
entry({"admin", "services", "ddnsto"}, cbi("ddnsto"), _("DDNS.to"), 20).dependent = true
entry({"admin", "services", "ddnsto_status"}, call("ddnsto_status"))
end
function ddnsto_status()
local sys = require "luci.sys"
local status = {
running = (sys.call("pidof ddnsto >/dev/null") == 0)
}
luci.http.prepare_content("application/json")
luci.http.write_json(status)
end