mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-18 08:48:27 -04:00
23 lines
997 B
Plaintext
Executable File
23 lines
997 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
|
|
echo '
|
|
***********************************************************
|
|
***********************************************************
|
|
**** ****
|
|
**** ****
|
|
**** This mod "linuxserver/mods:wait-for-internet" ****
|
|
**** ****
|
|
**** ****
|
|
**** has been deprecated and will not receive updates ****
|
|
**** ****
|
|
**** ****
|
|
**** ****
|
|
***********************************************************
|
|
***********************************************************'
|
|
|
|
# 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
|