Wait 5 instead of 3 seconds between installation attempts, as sometimes 10*3=30s is not enough for the DB to get ready on new installs

This commit is contained in:
ralf 2024-09-23 17:44:01 +02:00
parent 2fb7bbc760
commit a15136733c

View File

@ -89,9 +89,9 @@ do
echo "Installing of EGroupware failed!"
break
fi
echo "Retrying EGroupware installation in 3 seconds ..."
echo "Retrying EGroupware installation in 5 seconds ..."
try=$((try+1))
sleep 3s
sleep 5s
done 2>&1 | tee -a $LOG
# as we can NOT exit from until (runs a subshell), we need to check and do it here