Update temp.inc.sh
This commit is contained in:
@@ -343,20 +343,6 @@ CHECKTEMP_SERVICE(){
|
|||||||
(( $(bc <<<"${temp_f} < 1") )) && [[ "${temp_f}" = *"."* ]] && temp_f="0${temp_f}"
|
(( $(bc <<<"${temp_f} < 1") )) && [[ "${temp_f}" = *"."* ]] && temp_f="0${temp_f}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#### LOGGING OF SERVERROOM SENSOR DIFFERENCE
|
|
||||||
if [ "${SENSOR}" == "ServerRoomLA" ]; then
|
|
||||||
if [ ! -f ${PW_TMPFOLDER}/.log.sr.difference ] || [ $(expr `date +%s` - $(stat -c %Y ${PW_TMPFOLDER}/.log.sr.difference)) -ge 10 ]; then
|
|
||||||
[ ! -f ${PW_TMPFOLDER}/.log.sr.difference ] && touch ${PW_TMPFOLDER}/.log.sr.difference
|
|
||||||
temp_difference=$(bc <<< "scale=1; ${temp_probe_f}-${ServerRoomTH}")
|
|
||||||
(( $(bc <<<"${temp_difference} < 0") )) && temp_difference=`echo "scale=1; ${temp_difference} * -1" | bc`
|
|
||||||
echo "HERE: ${temp_probe_f} - ${ServerRoomTH} = ${temp_difference}"
|
|
||||||
echo ${temp_difference} >> ${PW_TMPFOLDER}/.log.sr.difference
|
|
||||||
fi
|
|
||||||
elif [ "${SENSOR}" == "ServerRoomTH" ]; then
|
|
||||||
ServerRoomTH=${temp_f}
|
|
||||||
fi
|
|
||||||
###################
|
|
||||||
|
|
||||||
# echo "HERE: [${SENSOR//-/}] - ${last_temp[${SENSOR//-/}]} - ${temp_c} - ${temp_f} - ${temp_warn} - ${temp_crit} - ${temp_crit_sys}"
|
# echo "HERE: [${SENSOR//-/}] - ${last_temp[${SENSOR//-/}]} - ${temp_c} - ${temp_f} - ${temp_warn} - ${temp_crit} - ${temp_crit_sys}"
|
||||||
# [ ! "${temp_c}" ] || [ ! "${temp_f}" ] || [ ! "${temp_warn}" ] || [ ! "${temp_crit}" ] || [ ! "${temp_crit_sys}" ] && echo "VALUE NOT FOUND"
|
# [ ! "${temp_c}" ] || [ ! "${temp_f}" ] || [ ! "${temp_warn}" ] || [ ! "${temp_crit}" ] || [ ! "${temp_crit_sys}" ] && echo "VALUE NOT FOUND"
|
||||||
|
|
||||||
@@ -492,6 +478,21 @@ Previous Temp: ${last_temp[${SENSOR//-/}]}${GAUGESH}"
|
|||||||
fi
|
fi
|
||||||
touch ${PW_TMPFOLDER}/${SENSOR}.insert
|
touch ${PW_TMPFOLDER}/${SENSOR}.insert
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
#### LOGGING OF SERVERROOM SENSOR DIFFERENCE
|
||||||
|
if [ "${SENSOR}" == "ServerRoomLA" ]; then
|
||||||
|
if [ ! -f ${PW_TMPFOLDER}/.log.sr.difference ] || [ $(expr `date +%s` - $(stat -c %Y ${PW_TMPFOLDER}/.log.sr.difference)) -ge 10 ]; then
|
||||||
|
[ ! -f ${PW_TMPFOLDER}/.log.sr.difference ] && touch ${PW_TMPFOLDER}/.log.sr.difference
|
||||||
|
temp_difference=$(bc <<< "scale=1; ${temp_probe_f}-${ServerRoomTH}")
|
||||||
|
(( $(bc <<<"${temp_difference} < 0") )) && temp_difference=`echo "scale=1; ${temp_difference} * -1" | bc`
|
||||||
|
echo "HERE: ${temp_probe_f} - ${ServerRoomTH} = ${temp_difference}"
|
||||||
|
echo ${temp_difference} >> ${PW_TMPFOLDER}/.log.sr.difference
|
||||||
|
fi
|
||||||
|
elif [ "${SENSOR}" == "ServerRoomTH" ]; then
|
||||||
|
ServerRoomTH=${temp_f}
|
||||||
|
fi
|
||||||
|
###################
|
||||||
|
|
||||||
else
|
else
|
||||||
if [ ! -f ${PW_TMPFOLDER}/${SENSOR}-error.reading ] || [ $(expr `date +%s` - $(stat -c %Y ${PW_TMPFOLDER}/${SENSOR}-error.reading)) -ge 1800 ]; then
|
if [ ! -f ${PW_TMPFOLDER}/${SENSOR}-error.reading ] || [ $(expr `date +%s` - $(stat -c %Y ${PW_TMPFOLDER}/${SENSOR}-error.reading)) -ge 1800 ]; then
|
||||||
SENDNOTICE "${SENSOR} Sensor ERROR" "ERROR reading sensor data" 1
|
SENDNOTICE "${SENSOR} Sensor ERROR" "ERROR reading sensor data" 1
|
||||||
|
|||||||
Reference in New Issue
Block a user