mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-15 18:03:30 +00:00
12 lines
277 B
Lua
12 lines
277 B
Lua
module("luci.controller.vlmcsd", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/vlmcsd") then
|
|
return
|
|
end
|
|
local page
|
|
page = entry({"admin", "services", "vlmcsd"}, cbi("vlmcsd"), _("KMS Server"), 100)
|
|
page.i18n = "vlmcsd"
|
|
page.dependent = true
|
|
end
|