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

This commit is contained in:
Sthope 2022-04-24 21:59:34 +02:00
parent 7296715ae7
commit 07be994480

View File

@ -6,13 +6,20 @@ nano proxmox_sendTemp_2HA
```
```
#!/bin/sh
#!/bin/bash
# ___ _ _ _ __
# / __|| |_ | |_ ___ | '_ \ ___
# \__ \| _|| \ / _ \| .__// -_)
# |___/ \__||_||_|\___/|_| \___|
temp=$(cat /sys/class/thermal/thermal_zone2/temp')
mosquitto_pub -h host -user -P pass -t proxmox/pve1/cpu_temp -m $temp
mosquitto_pub -h host -u user -P pass -t proxmox/pve1/cpu_temp -m $temp
```
```
chmod +x proxmox_sendTemp_2HA;/10 * * * * /proxmox_sendTemp_2HA
chmod +x proxmox_sendTemp_2HA;
```
```
while proxmox_sendTemp_2HA; do sleep 10; done
```