11 lines
223 B
Lua
11 lines
223 B
Lua
|
|
module("luci.controller.cifs", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/cifs") then
|
|
return
|
|
end
|
|
|
|
entry({"admin", "nas", "cifs"}, cbi("cifs"), _("Mount SMB NetShare")).dependent = true
|
|
end
|