From 3bc801f2f5004ef33207a378fb319b0f73a43e80 Mon Sep 17 00:00:00 2001 From: Din Music Date: Tue, 2 Apr 2024 17:54:45 +0200 Subject: [PATCH] bin/test-image: Give Centos images an extra minute to boot Signed-off-by: Din Music --- bin/test-image | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bin/test-image b/bin/test-image index 47648405a..db4f22bf0 100755 --- a/bin/test-image +++ b/bin/test-image @@ -152,9 +152,15 @@ done echo "==> Waiting for instances to start" for i in ${INSTANCES}; do if [ "${DIST}" == "busybox" ]; then + # Busybox has only 1 process running when ready. MIN_PROC_COUNT=1 fi + if [ "${DIST}" == "centos" ]; then + # Give CentOS a bit more time to boot. + MAX_WAIT_SECONDS=180 + fi + waitInstanceReady "${i}" done