20 lines
429 B
Text
20 lines
429 B
Text
|
#!/bin/sh
|
||
|
|
||
|
# Include NUT nut.conf
|
||
|
[ -r /etc/nut/nut.conf ] && . /etc/nut/nut.conf
|
||
|
|
||
|
case "$MODE" in
|
||
|
standalone|netserver|netclient)
|
||
|
exec /lib/nut/upsmon "$@"
|
||
|
;;
|
||
|
none)
|
||
|
echo "upsmon disabled, please adjust the configuration to your needs"
|
||
|
echo "Then set MODE to a suitable value in /etc/nut/nut.conf to enable it"
|
||
|
# exit success to avoid breaking the install process!
|
||
|
exit 0
|
||
|
;;
|
||
|
*)
|
||
|
exit 1
|
||
|
;;
|
||
|
esac
|