mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-08-02 23:49:34 +08:00
11 lines
269 B
Lua
11 lines
269 B
Lua
module("luci.controller.nfs", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/nfs") then
|
|
return
|
|
end
|
|
local page = entry({"admin", "nas", "nfs"}, cbi("nfs"), _("NFS Manage"), 5)
|
|
page.dependent = true
|
|
page.acl_depends = { "luci-app-nfs" }
|
|
end
|