summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-samba/luasrc/controller/samba.lua
diff options
context:
space:
mode:
Diffstat (limited to 'applications/luci-app-samba/luasrc/controller/samba.lua')
-rw-r--r--applications/luci-app-samba/luasrc/controller/samba.lua16
1 files changed, 0 insertions, 16 deletions
diff --git a/applications/luci-app-samba/luasrc/controller/samba.lua b/applications/luci-app-samba/luasrc/controller/samba.lua
deleted file mode 100644
index 397af6a82..000000000
--- a/applications/luci-app-samba/luasrc/controller/samba.lua
+++ /dev/null
@@ -1,16 +0,0 @@
--- Copyright 2008 Steven Barth <steven@midlink.org>
--- Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
--- Licensed to the public under the Apache License 2.0.
-
-module("luci.controller.samba", package.seeall)
-
-function index()
- if not nixio.fs.access("/etc/config/samba") then
- return
- end
-
- local page
-
- page = entry({"admin", "services", "samba"}, cbi("samba"), _("Network Shares"))
- page.dependent = true
-end