Fix while loop

This commit is contained in:
Raphaël Numbus
2026-01-10 08:55:13 +01:00
parent f9cbe66dff
commit 225dfdc60b
+1 -1
View File
@@ -733,7 +733,7 @@ postrun_action() {
FOUND="false"
i="0"
while FOUND="false"; do
while [[ "${FOUND}" == "false" ]]; do
if ping -c1 -W1 $HOME_SERVER_IP >/dev/null 2>&1; then
FOUND="true"
echo -e "\n✅ Ping ${HOME_SERVER_IP} successful ! Continuing..."