summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-smbd/luasrc/controller/smbd.lua
diff options
context:
space:
mode:
Diffstat (limited to 'applications/luci-app-smbd/luasrc/controller/smbd.lua')
-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 2bf1b1578..000000000
--- 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