mirror of
https://github.com/engineer-man/piston.git
synced 2025-07-06 22:18:46 +02:00
6 lines
122 B
Bash
6 lines
122 B
Bash
#!/usr/bin/env bash
|
|
|
|
while ! ping -c 1 -W 1 1.1.1.1; do
|
|
echo "Waiting for 1.1.1.1 - network is down"
|
|
sleep 1
|
|
done
|