immortalwrt/package/jsda/luci-app-nfs-share/luasrc/controller/nfs-share-ui.lua
2019-07-02 18:06:49 +08:00

16 lines
381 B
Lua
Executable File

-- Copyright 2017 Kapil Dev Mishra <kdm6389@gmail.com.org>
-- Licensed to the public under the Apache License 2.0.
module("luci.controller.nfs-share", package.seeall)
function index()
if not nixio.fs.access("/etc/exports") then
return
end
local page
page = entry({"admin", "services", "nfs-share"}, cbi("nfs-share"), _("Network Share - NFS"))
page.dependent = true
end