diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-12-07 21:08:49 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-12-07 21:08:49 +0000 |
commit | 6c487cde9ad77a5b6d6d3fed37229b2f9b83528b (patch) | |
tree | c84d695ccd8f105bf2187fd0c83523713fb1a63f /applications/luci-statistics/luasrc/controller/luci_statistics | |
parent | b39ea9e637b2827d39fc49544af90df938fc3600 (diff) |
applications/luci-statistics: drop support for wireless plugin, add iwinfo replacement
Diffstat (limited to 'applications/luci-statistics/luasrc/controller/luci_statistics')
-rw-r--r-- | applications/luci-statistics/luasrc/controller/luci_statistics/luci_statistics.lua | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/applications/luci-statistics/luasrc/controller/luci_statistics/luci_statistics.lua b/applications/luci-statistics/luasrc/controller/luci_statistics/luci_statistics.lua index dea1618878..a49c40492a 100644 --- a/applications/luci-statistics/luasrc/controller/luci_statistics/luci_statistics.lua +++ b/applications/luci-statistics/luasrc/controller/luci_statistics/luci_statistics.lua @@ -58,15 +58,14 @@ function index() processes = _("Processes"), rrdtool = _("RRDTool"), tcpconns = _("TCP Connections"), - unixsock = _("UnixSock"), - wireless = _("Wireless") + unixsock = _("UnixSock") } -- our collectd menu local collectd_menu = { output = { "csv", "network", "rrdtool", "unixsock" }, system = { "cpu", "df", "disk", "email", "exec", "irq", "load", "memory", "processes" }, - network = { "conntrack", "dns", "interface", "iptables", "netlink", "olsrd", "ping", "tcpconns", "wireless", "iwinfo" } + network = { "conntrack", "dns", "interface", "iptables", "netlink", "olsrd", "ping", "tcpconns", "iwinfo" } } -- create toplevel menu nodes |