1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-03-09 15:40:03 +00:00
openmptcprouter-feeds/luci-app-samba4/luasrc/controller/samba4.lua
2022-01-06 02:24:26 +08:00

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