first commit
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Sthope 2022-04-24 22:04:25 +02:00
parent 07be994480
commit fb8faeb2cf

View File

@ -12,8 +12,15 @@ nano proxmox_sendTemp_2HA
# \__ \| _|| \ / _ \| .__// -_)
# |___/ \__||_||_|\___/|_| \___|
host=MQTT_IP
user=MQTT_USERNAME
pass=MQTT_PASSWORD
proxmox_name=pve1
temp=$(cat /sys/class/thermal/thermal_zone2/temp')
mosquitto_pub -h host -u user -P pass -t proxmox/pve1/cpu_temp -m $temp
mosquitto_pub -h $host -u $user -P $pass -t proxmox/$proxmox_name/cpu_temp -m $temp
```
```