mirror of
https://github.com/openwrt/packages.git
synced 2025-02-12 03:28:07 +00:00
18 lines
374 B
Bash
18 lines
374 B
Bash
#!/bin/sh
|
|
#
|
|
# This shell script if placed in /etc/apcupsd
|
|
# will be called by /etc/apcupsd/apccontrol when the UPS
|
|
# goes on batteries.
|
|
# We send an email message to root to notify him.
|
|
#
|
|
. /etc/apcupsd/apcupsd_mail.conf
|
|
|
|
MSG="$HOSTNAME Power Failure !!!"
|
|
#
|
|
(
|
|
echo "$MSG"
|
|
echo " "
|
|
/usr/sbin/apcaccess status
|
|
) | $MAILPROG -h $MAILHOST -f $FROM -s "$MSG" $TO
|
|
exit 0
|