nut: nut-cgi: Add support for upsset

This allows config for setting variables and/or running
commands from the CGI.

Signed-off-by: Daniel F. Dickinson <cshored@thecshore.com>
This commit is contained in:
Daniel F. Dickinson
2018-08-27 16:10:48 -04:00
parent 918a62f919
commit 2fca922cf0
3 changed files with 25 additions and 1 deletions
+19
View File
@@ -8,6 +8,20 @@ START=51
DEFAULT=/etc/default/nut
UPSCGI_C=/var/etc/nut/hosts.conf
UPSCGI_S=/var/etc/nut/upsset.conf
nut_upscgi_upsset() {
local cfg="$1"
local enable
config_get_bool enable "$cfg" enable 0
[ $enable -eq 1 ] && {
ln -sf /etc/nut/upsset.conf.enable "$UPSCGI_S"
} || {
ln -sf /etc/nut/upsset.conf.disable "$UPSCGI_S"
}
}
nut_upscgi_add() {
local cfg="$1"
@@ -30,15 +44,20 @@ nut_upscgi_add() {
start() {
rm -f $UPSCGI_C
rm -f "$UPSCGI_S"
mkdir -m 0755 -p "$(dirname "$UPSCGI_C")"
config_load nut_cgi
config_foreach nut_upscgi_add host
config_foreach nut_upscgi_upsset upsset
chmod 640 /var/etc/nut/hosts.conf
}
stop() {
rm -f $UPSCGI_C
rm -f "$UPSCGI_S"
ln -sf /etc/nut/upsset.conf.disable "$UPSCGI_S"
}