You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
#
|
|
# This shell script if placed in /etc/apcupsd
|
|
# will be called by /etc/apcupsd/apccontrol when the UPS
|
|
# goes on batteries.
|
|
# We send an email message to root to notify him.
|
|
#
|
|
. /etc/apcupsd/apcupsd_mail.conf
|
|
|
|
MSG="$HOSTNAME Power Failure !!!"
|
|
#
|
|
(
|
|
echo "$MSG"
|
|
echo " "
|
|
/usr/sbin/apcaccess status
|
|
) | $MAILPROG -h $MAILHOST -f $FROM -s "$MSG" $TO
|
|
exit 0
|