Files
spielplatz/nummer5/nummer5-host-powercycle.sh
2022-09-14 19:41:27 +02:00

11 lines
250 B
Bash
Executable File

#!/bin/bash
host=$1
echo "${host} turning it off"
mosquitto_pub -h mqtt.wks -t switch_cloud/switch/${host}/command -m OFF
sleep 2
echo "${host} turning it on"
mosquitto_pub -h mqtt.wks -t switch_cloud/switch/${host}/command -m ON
ping -W 1 ${host}