mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-07-20 08:26:59 +08:00

* luci-app-verysync: add button * fix compatibility with LuCI2 * improve translation * improve translation * fix mistake
18 lines
472 B
Lua
18 lines
472 B
Lua
module("luci.controller.verysync", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/verysync") then
|
|
return
|
|
end
|
|
|
|
entry({"admin", "nas", "verysync"}, cbi("verysync"), _("Verysync"), 10).dependent = true
|
|
entry({"admin","nas","verysync","status"},call("act_status")).leaf=true
|
|
end
|
|
|
|
function act_status()
|
|
local e={}
|
|
e.running=luci.sys.call("pgrep verysync >/dev/null")==0
|
|
luci.http.prepare_content("application/json")
|
|
luci.http.write_json(e)
|
|
end
|