mirror of
https://github.com/qosmio/nss-packages.git
synced 2025-12-20 18:21:40 +00:00
10 lines
244 B
Lua
10 lines
244 B
Lua
module("luci.controller.pcimodem", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/pcimodem") then
|
|
return
|
|
end
|
|
|
|
entry({"admin", "network", "pcimodem"}, cbi("pcimodem"), _("PCI Modem Server"), 80).dependent = false
|
|
end
|