Sophie

Sophie

distrib > Mandriva > 9.0 > i586 > by-pkgid > aaf65192d62c23de16e5cf298f478bac > files > 8

apcupsd-3.9.8-2mdk.i586.rpm

#!/bin/sh
#
# This shell script if placed in /etc/apcupsd
# will be called by /etc/apcupsd/apccontrol when the master
# connects to the slave.
# We send an email message to root to notify him.
#
SYSADMIN=root
MAIL="/bin/mail"

HOSTNAME=`hostname`
MSG="slave $HOSTNAME received connection from master"
#
(
   echo "$MSG"
   echo " "
   /sbin/apcaccess status
) | $MAIL -s "$MSG" $SYSADMIN
exit 0