graphene-os-server-infrastr.../disconnect
2024-09-25 17:44:13 -04:00

17 lines
197 B
Bash
Executable File

#!/bin/bash
set -o errexit -o nounset -o pipefail
[[ $# -eq 0 ]] || exit 1
. hosts.sh
for host in ${hosts_all[@]}; do
echo $host
echo
ssh root@$host -O exit || true
echo
done