Update power.inc.sh

This commit is contained in:
2023-12-17 16:38:45 -06:00
parent 60af458bd0
commit 876b3265f2

View File

@@ -386,7 +386,7 @@ BATT VOLTAGE: ${BATTVOLT}'volts"
fi
echo 1a
if [ ! -f ${PW_TMPFOLDER}/power.ac.good ]; then
echo 1a-1
if [ -f ${PW_TMPFOLDER}/shutdown.SYS ] || [ -f ${PW_TMPFOLDER}/shutdown.MAIN ] || [ -f ${PW_TMPFOLDER}/power.ac.conserve ]; then
SENDNOTICE "HOSTS POWER" "Power restored! Will wait ${PW_WAIT_TO_POWER_SERVERS}'mins before turning host(s) back on"
touch ${PW_TMPFOLDER}/.power.restored
@@ -396,6 +396,7 @@ BATT VOLTAGE: ${BATTVOLT}'volts"
touch ${PW_TMPFOLDER}/power.ac.good
elif [ -f ${PW_TMPFOLDER}/.power.restored ] && [ $(expr `date +%s` - $(stat -c %Y ${PW_TMPFOLDER}/.power.restored)) -ge $(echo "scale=0; ${PW_WAIT_TO_POWER_SERVERS}*60" | bc) ]; then
echo 1a-2
HOSTMGMT mainsite -p on >/dev/null 2>&1
rm -f ${PW_TMPFOLDER}/.power.restored
fi