luci-app-cifsd: add new package
[project/luci.git] / applications / luci-app-cifsd / luasrc / controller / cifsd.lua
1 -- Licensed to the public under the Apache License 2.0.
2
3 module("luci.controller.cifsd", package.seeall)
4
5 function index()
6 if not nixio.fs.access("/etc/config/cifsd") then
7 return
8 end
9
10 entry({"admin", "services", "cifsd"}, view("cifsd"), _("Network Shares")).dependent = true
11 end