mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-09-12 11:24:28 +08:00
update 2026-05-10 09:48:30
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user