summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-smbd/luasrc
diff options
context:
space:
mode:
authorHannu Nyman <hannu.nyman@iki.fi>2020-01-26 17:58:32 +0200
committerGitHub <noreply@github.com>2020-01-26 17:58:32 +0200
commitc98af50cc29a0853605a37fb31c1c665a86a844f (patch)
tree9ab1b0af4ab90e0f61bf739d3c2812defac14b9b /applications/luci-app-smbd/luasrc
parent0896501713e1e3311f74c7774abdab24f6f3cac2 (diff)
parent4145392f8c4cfae8412d4c18a001d35e22a49902 (diff)
Merge pull request #3566 from Andy2244/luci-app-smbd-name_change_luci-app-ksmbd
luci-app-smbd: rename to luci-app-ksmbd
Diffstat (limited to 'applications/luci-app-smbd/luasrc')
-rw-r--r--applications/luci-app-smbd/luasrc/controller/smbd.lua11
1 files changed, 0 insertions, 11 deletions
diff --git a/applications/luci-app-smbd/luasrc/controller/smbd.lua b/applications/luci-app-smbd/luasrc/controller/smbd.lua
deleted file mode 100644
index 2bf1b15780..0000000000
--- a/applications/luci-app-smbd/luasrc/controller/smbd.lua
+++ /dev/null
@@ -1,11 +0,0 @@
--- 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