mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
9 lines
211 B
Lua
9 lines
211 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
|