Files
2022-08-26 14:22:43 -04:00

8 lines
208 B
Plaintext
Executable File

#!/usr/bin/with-contenv bash
# Loop until an active internet connection is established
until $(curl --max-time 60 -s -o /dev/null https://www.linuxserver.io/); do
# Sleep to allow cooldown
sleep 10
done