mirror of
https://github.com/valitydev/salt-common.git
synced 2024-11-06 18:35:18 +00:00
20 lines
423 B
Bash
Executable File
20 lines
423 B
Bash
Executable File
#!/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
|