Upgraded repo with actual wait-for-internet commands

This commit is contained in:
N3rdP1um23
2021-02-05 10:10:54 -05:00
parent d1dc6e5858
commit 7c4683c59b
8 changed files with 18 additions and 70 deletions
@@ -0,0 +1,7 @@
## !/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