mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-06-18 05:15:28 +08:00
8 lines
229 B
Lua
Executable File
8 lines
229 B
Lua
Executable File
module("luci.controller.haproxy", package.seeall)
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/haproxy") then
|
|
return
|
|
end
|
|
|
|
entry({"admin", "services", "haproxy"}, cbi("haproxy"), _("HAProxy")).dependent = true
|
|
end |