summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-cifsd/luasrc/controller/cifsd.lua
diff options
context:
space:
mode:
authorAndy Walsh <andy.walsh44+github@gmail.com>2019-12-31 15:22:36 +0100
committerAndy Walsh <andy.walsh44+github@gmail.com>2020-01-04 05:31:04 +0100
commit5912474500429ade30c2d38db077933b375e40ff (patch)
tree294af455010f3a1ea6faedfcb1c5540417e3856c /applications/luci-app-cifsd/luasrc/controller/cifsd.lua
parentd844caf13787a66a5deac438d9f28746b79136ff (diff)
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>
Diffstat (limited to 'applications/luci-app-cifsd/luasrc/controller/cifsd.lua')
-rw-r--r--applications/luci-app-cifsd/luasrc/controller/cifsd.lua11
1 files changed, 0 insertions, 11 deletions
diff --git a/applications/luci-app-cifsd/luasrc/controller/cifsd.lua b/applications/luci-app-cifsd/luasrc/controller/cifsd.lua
deleted file mode 100644
index de3f9b0f9..000000000
--- a/applications/luci-app-cifsd/luasrc/controller/cifsd.lua
+++ /dev/null
@@ -1,11 +0,0 @@
--- Licensed to the public under the Apache License 2.0.
-
-module("luci.controller.cifsd", package.seeall)
-
-function index()
- if not nixio.fs.access("/etc/config/cifsd") then
- return
- end
-
- entry({"admin", "services", "cifsd"}, view("cifsd"), _("Network Shares")).dependent = true
-end