blob: 03c53556b6b8bde0201877851f3af9aa830a0eca (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
-- Licensed to the public under the Apache License 2.0.
module("luci.controller.samba4", package.seeall)
function index()
if not nixio.fs.access("/etc/config/samba4") then
return
end
entry({"admin", "services", "samba4"}, view("samba4"), _("Network Shares")).dependent = true
end
|