mirror of
https://github.com/GrapheneOS/infrastructure.git
synced 2024-12-22 13:45:02 -05:00
20 lines
284 B
Plaintext
20 lines
284 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -o errexit -o nounset -o pipefail
|
||
|
|
||
|
[[ $# -ge 1 ]] || exit 1
|
||
|
|
||
|
user=root
|
||
|
|
||
|
. hosts.sh
|
||
|
|
||
|
declare -n hosts=hosts_$1
|
||
|
shift
|
||
|
for host in ${hosts[@]}; do
|
||
|
echo $host
|
||
|
echo
|
||
|
|
||
|
ssh $user@$host curl -sS --unix-socket /run/nginx/status.sock http://localhost/
|
||
|
echo
|
||
|
done
|