clan-infra/targets/web01/reboot.sh
Jörg Thalheim dfdd854564
All checks were successful
build / test (push) Successful in 6s
add script to reboot machine
2023-07-20 09:19:29 +02:00

13 lines
238 B
Bash
Executable File

#!/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"