summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-nut/luasrc/controller
diff options
context:
space:
mode:
authorDaniel Dickinson <lede@cshore.thecshore.com>2016-08-13 20:35:01 -0400
committerDaniel F. Dickinson <cshored@thecshore.com>2018-08-29 01:03:17 -0400
commitfb262ad268ce7de9de79d47145c434e2662f2941 (patch)
tree9ffd72199ba22ea7b67bd62484cc459418c45398 /applications/luci-app-nut/luasrc/controller
parentb93d3f3a1812e05def960835d39080780edb7129 (diff)
luci-app-nut: Add support for NUT configuration
Adds app to configure NUT (Network UPS Tools), including nut-server, nut-monitor, and nut-cgi. Signed-off-by: Daniel F. Dickinson <cshored@thecshore.com>
Diffstat (limited to 'applications/luci-app-nut/luasrc/controller')
-rw-r--r--applications/luci-app-nut/luasrc/controller/nut.lua25
1 files changed, 25 insertions, 0 deletions
diff --git a/applications/luci-app-nut/luasrc/controller/nut.lua b/applications/luci-app-nut/luasrc/controller/nut.lua
new file mode 100644
index 0000000000..5598451d6e
--- /dev/null
+++ b/applications/luci-app-nut/luasrc/controller/nut.lua
@@ -0,0 +1,25 @@
+-- Copyright 2015 Daniel Dickinson <openwrt@daniel.thecshore.com>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.controller.nut", package.seeall)
+
+function index()
+ if not nixio.fs.access("/etc/config/nut_server") and not nixio.fs.access("/etc/config/nut_monitor") and not nixio.fs.access("/etc/config/nut_cgi") then
+ return
+ end
+
+ entry({"admin", "services", "nut"}, firstchild(), _("Network UPS Tools"))
+
+ if nixio.fs.access("/etc/config/nut_server") then
+ entry({"admin", "services", "nut", "server"}, cbi("nut_server"), _("Network UPS Tools (Server)"), 20)
+ end
+
+ if nixio.fs.access("/etc/config/nut_monitor") then
+ entry({"admin", "services", "nut", "monitor"}, cbi("nut_monitor"), _("Network UPS Tools (Monitor)"), 30)
+ end
+
+ if nixio.fs.access("/etc/config/nut_cgi") then
+ entry({"admin", "services", "nut", "cgi"}, cbi("nut_cgi"), _("Network UPS Tools (CGI)"), 40)
+ end
+end
+