mirror of
https://github.com/GrapheneOS/infrastructure.git
synced 2024-12-22 05:35:00 -05:00
17 lines
197 B
Plaintext
17 lines
197 B
Plaintext
|
#!/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
|