Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-release > by-pkgid > aae65ab030b57bb481721f6823ecb9b0 > files > 10

apcupsd-3.14.13-3.mga5.x86_64.rpm

#!/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.
#

HOSTNAME=`hostname`
MSG="$HOSTNAME UPS $1 Power has returned"
#
(
   echo "Subject: $MSG"
   echo " "
   echo "$MSG"
   echo " "
   /sbin/apcaccess status
) | $APCUPSD_MAIL -s "$MSG" $SYSADMIN
exit 0