mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-06-14 20:02:04 +08:00
18 lines
377 B
Lua
18 lines
377 B
Lua
-- Licensed to the public under the Apache License 2.0.
|
|
|
|
module("luci.controller.cifsd", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/ksmbd") then
|
|
return
|
|
end
|
|
|
|
entry({"admin","nas"},firstchild(),"NAS",44).dependent=false
|
|
|
|
local page
|
|
|
|
page = entry({"admin", "nas", "cifsd"}, cbi("cifsd"), _("Network Shares (CIFSD)"))
|
|
page.dependent = true
|
|
end
|
|
|