summaryrefslogtreecommitdiff
path: root/agent/nut
diff options
context:
space:
mode:
Diffstat (limited to 'agent/nut')
-rwxr-xr-xagent/nut11
1 files changed, 11 insertions, 0 deletions
diff --git a/agent/nut b/agent/nut
new file mode 100755
index 0000000..2e4e76f
--- /dev/null
+++ b/agent/nut
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+if which upsc > /dev/null 2>&1 ; then
+ echo '<<<nut>>>'
+ for ups in $(upsc -l)
+ do
+ upsc $ups| sed "s,^,$ups ,"
+ done
+fi
+
+exit 0