luci/applications/luci-app-ksmbd/luasrc/controller/ksmbd.lua
Andy Walsh c73f1ef5d4 luci-app-smbd: rename to luci-app-ksmbd
* follow upstream name change to ksmbd
* remove old artifacs from "applications\luci-app-cifsd\po\"

Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
2020-01-27 22:09:08 +01:00

11 lines
284 B
Lua

-- Licensed to the public under the Apache License 2.0.
module("luci.controller.ksmbd", package.seeall)
function index()
if not nixio.fs.access("/etc/config/ksmbd") then
return
end
entry({"admin", "services", "ksmbd"}, view("ksmbd"), _("Network Shares")).dependent = true
end