blob: 2bf1b15780ec9f7dc41633d8660cb546696edd56 (
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.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
|