luci-mod-system: use declarative dependencies in controller
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
parent
22beb3f1df
commit
470464ae4a
1 changed files with 9 additions and 13 deletions
|
@ -5,29 +5,25 @@
|
|||
module("luci.controller.admin.system", package.seeall)
|
||||
|
||||
function index()
|
||||
local fs = require "nixio.fs"
|
||||
|
||||
entry({"admin", "system", "system"}, view("system/system"), _("System"), 1)
|
||||
|
||||
entry({"admin", "system", "admin"}, firstchild(), _("Administration"), 2)
|
||||
entry({"admin", "system", "admin", "password"}, view("system/password"), _("Router Password"), 1)
|
||||
|
||||
if fs.access("/etc/config/dropbear") then
|
||||
entry({"admin", "system", "admin", "dropbear"}, view("system/dropbear"), _("SSH Access"), 2)
|
||||
entry({"admin", "system", "admin", "sshkeys"}, view("system/sshkeys"), _("SSH-Keys"), 3)
|
||||
end
|
||||
entry({"admin", "system", "admin", "dropbear"}, view("system/dropbear"), _("SSH Access"), 2)
|
||||
.uci_depends = { dropbear = true }
|
||||
|
||||
entry({"admin", "system", "admin", "sshkeys"}, view("system/sshkeys"), _("SSH-Keys"), 3)
|
||||
.uci_depends = { dropbear = true }
|
||||
|
||||
entry({"admin", "system", "startup"}, view("system/startup"), _("Startup"), 45)
|
||||
entry({"admin", "system", "crontab"}, view("system/crontab"), _("Scheduled Tasks"), 46)
|
||||
|
||||
if fs.access("/sbin/block") and fs.access("/etc/config/fstab") then
|
||||
entry({"admin", "system", "mounts"}, view("system/mounts"), _("Mount Points"), 50)
|
||||
end
|
||||
entry({"admin", "system", "mounts"}, view("system/mounts"), _("Mount Points"), 50)
|
||||
.file_depends = { "/sbin/block" }
|
||||
|
||||
local nodes, number = fs.glob("/sys/class/leds/*")
|
||||
if number > 0 then
|
||||
entry({"admin", "system", "leds"}, view("system/leds"), _("<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"), 60)
|
||||
end
|
||||
entry({"admin", "system", "leds"}, view("system/leds"), _("<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"), 60)
|
||||
.file_depends = { "/sys/class/leds" }
|
||||
|
||||
entry({"admin", "system", "flash"}, view("system/flash"), _("Backup / Flash Firmware"), 70)
|
||||
|
||||
|
|
Loading…
Reference in a new issue