mirror of
https://github.com/GrapheneOS/infrastructure.git
synced 2024-10-01 00:55:42 -04:00
17 lines
197 B
Bash
Executable File
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
|