2020-02-13 23:11:23 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-02-17 11:22:21 +00:00
|
|
|
IPMIHOST=10.0.0.82
|
2020-02-13 23:11:23 +00:00
|
|
|
IPMIUSER=ReekyMarko
|
|
|
|
IPMIPW={{@@ env['PASS_IPMI'] @@}}
|
|
|
|
IPMIEK=0000000000000000000000000000000000000000
|
|
|
|
MAXTEMP=27
|
|
|
|
TEMP=$(ipmitool -I lanplus -H $IPMIHOST -U $IPMIUSER -P $IPMIPW -y $IPMIEK sdr type temperature |grep Ambient |grep degrees |grep -Po '\d{2}' | tail -1)
|
|
|
|
|
2020-02-18 13:44:17 +00:00
|
|
|
mosquitto_pub -u reekynet -P {{@@ env['PASS_MQTT'] @@}} -t "ipmi/temp" -m "$TEMP"
|
2020-02-17 11:22:21 +00:00
|
|
|
|
2020-02-13 23:11:23 +00:00
|
|
|
|
|
|
|
if [[ $TEMP > $MAXTEMP ]];
|
|
|
|
then
|
|
|
|
printf "Warning: Temperature is too high! Activating dynamic fan control! ($TEMP C)"
|
|
|
|
ipmitool -I lanplus -H $IPMIHOST -U $IPMIUSER -P $IPMIPW -y $IPMIEK raw 0x30 0x30 0x01 0x01
|
|
|
|
else
|
|
|
|
printf "Temperature is OK ($TEMP C)"
|
|
|
|
fi
|