* modules/admin-core: Reintroduced ffluci.controller.admin.status
[project/luci.git] / modules / admin-core / src / model / menu / 00admin.lua
1 add("admin", "index", "Übersicht", 10)
2 act("luci", "Oberfläche")
3
4 add("admin", "status", "Status", 20)
5 act("syslog", "Systemprotokoll")
6
7 add("admin", "system", "System", 30)
8 act("packages", "Paketverwaltung")
9 act("passwd", "Passwort ändern")
10 act("sshkeys", "SSH-Schlüssel")
11 act("hostname", "Hostname")
12 act("fstab", "Einhängepunkte")
13 act("upgrade", "Firmwareupgrade")
14 act("reboot", "Neu starten")
15
16 add("admin", "services", "Dienste", 40)
17 if isfile("/etc/config/olsr") then
18         act("olsrd", "OLSR")
19 end
20 act("httpd", "HTTP-Server")
21 act("dropbear", "SSH-Server")
22 act("dnsmasq", "Dnsmasq")
23
24 add("admin", "network", "Netzwerk", 50)
25 act("vlan", "Switch")
26 act("ifaces", "Schnittstellen")
27 act("dhcp", "DHCP-Server")
28 act("ptp", "PPPoE / PPTP")
29 act("routes", "Statische Routen")
30 if isfile("/etc/config/qos") then
31         act("qos", "Quality of Service")
32 end
33
34 add("admin", "wifi", "Drahtlos", 60)
35 act("devices", "Geräte")
36 act("networks", "Netze")