mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-03-09 15:40:03 +00:00
11 lines
287 B
Lua
11 lines
287 B
Lua
-- 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"}, cbi("samba4"), _("Network Shares")).dependent = true
|
|
end
|