aboutsummaryrefslogtreecommitdiff
path: root/net/apcupsd/files/changeme
blob: bcf448aba399f6fa536657d76fd39895f3820d09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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