mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-15 18:03:30 +00:00
10 lines
231 B
Lua
10 lines
231 B
Lua
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
|