18 lines
414 B
Plaintext
18 lines
414 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# This shell script if placed in /etc/apcupsd
|
||
|
# will be called by /etc/apcupsd/apccontrol when apcupsd
|
||
|
# detects that the battery should be replaced.
|
||
|
# We send an email message to root to notify him.
|
||
|
#
|
||
|
. /etc/apcupsd/apcupsd_mail.conf
|
||
|
|
||
|
MSG="$HOSTNAME UPS battery needs changing NOW."
|
||
|
#
|
||
|
(
|
||
|
echo "$MSG"
|
||
|
echo " "
|
||
|
/usr/sbin/apcaccess status
|
||
|
) | $MAILPROG -h $MAILHOST -F $FROM -s "$MSG" $TO
|
||
|
exit 0
|