mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-07-27 17:01:53 +08:00
25 lines
618 B
Lua
25 lines
618 B
Lua
module("luci.controller.floatip", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/floatip") then
|
|
return
|
|
end
|
|
|
|
entry({"admin", "services", "floatip"}, cbi("floatip"), _("FloatingGateway"), 20).dependent = true
|
|
|
|
entry({"admin", "services", "floatip_status"}, call("floatip_status"))
|
|
end
|
|
|
|
function floatip_status()
|
|
local sys = require "luci.sys"
|
|
local uci = require "luci.model.uci".cursor()
|
|
|
|
local status = {
|
|
running = not (sys.call("flock -sn /var/lock/floatip_loop.lock -c true >/dev/null") == 0),
|
|
}
|
|
|
|
luci.http.prepare_content("application/json")
|
|
luci.http.write_json(status)
|
|
end
|
|
|