luci/applications/luci-app-smbd/luasrc/controller/smbd.lua
Andy Walsh 5912474500 luci-app-smbd: rename change cifsd->smbd
* update for name change cifsd->smbd
* add version code for: kmod, usmbd
* regen translations
* update acl's

Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
2020-01-04 05:31:04 +01:00

11 lines
280 B
Lua

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