add script to reboot machine
All checks were successful
build / test (push) Successful in 6s

This commit is contained in:
Jörg Thalheim 2023-07-20 09:19:05 +02:00
parent 4a0b6cf785
commit dfdd854564

12
targets/web01/reboot.sh Executable file
View File

@ -0,0 +1,12 @@
#!/usr/bin/env bash
HOST=clan.lol
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
ssh "root@$HOST" reboot
# wait till shutdown
while ping -4 -W 1 -c 1 "$HOST"; do
sleep 1
done
"$SCRIPT_DIR/decrypt.sh"