#!/bin/sh # # This shell script if placed in /etc/apcupsd # will be called by /etc/apcupsd/apccontrol when the # UPS goes back on to the mains after a power failure. # We send an email message to root to notify him. # . /etc/apcupsd/mail.conf SYSADMIN=root APCUPSD_MAIL="smtp" HOSTNAME=`hostname` MSG="$HOSTNAME Power has returned" # ( echo "Subject: $MSG" echo " " echo "$MSG" echo " " /sbin/apcaccess status ) | $APCUPSD_MAIL -h $APCUPSD_EVENTMAIL_HOST -s "$MSG" $APCUPSD_EVENTMAIL_TO exit 0