mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-07-11 00:17:06 +08:00
10 lines
213 B
Lua
10 lines
213 B
Lua
module("luci.controller.nfs", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/nfs") then
|
|
return
|
|
end
|
|
|
|
entry({"admin", "nas", "nfs"}, cbi("nfs"), _("NFS Manage"), 5).dependent = true
|
|
end
|