mirror of
https://github.com/coolsnowwolf/luci.git
synced 2025-05-01 15:49:19 +08:00
10 lines
222 B
Lua
10 lines
222 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
|