From 2e77917a436e02ad0ca422950c3abe6d35d72981 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Mass=C3=A9?= Date: Fri, 5 Sep 2025 08:38:26 -0400 Subject: [PATCH] wip --- .../scenario1/root/etc/greenboot/check/required.d/odoo-check.sh | 2 +- bootc/scripts/buildall.sh | 0 2 files changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 bootc/scripts/buildall.sh diff --git a/bootc/scenario1/root/etc/greenboot/check/required.d/odoo-check.sh b/bootc/scenario1/root/etc/greenboot/check/required.d/odoo-check.sh index 1ee8abc..c8c90c6 100755 --- a/bootc/scenario1/root/etc/greenboot/check/required.d/odoo-check.sh +++ b/bootc/scenario1/root/etc/greenboot/check/required.d/odoo-check.sh @@ -4,7 +4,7 @@ set -Eeuo pipefail declare -a container_state=() MAX_ATTEMPTS=60 -for attempt in {1..$MAX_ATTEMPTS}; do +for attempt in (( i=1; i<=MAX_ATTEMPTS; i++ )); do echo "Checking Odoo deployment ($attempt/$MAX_ATTEMPTS)..." state=1 diff --git a/bootc/scripts/buildall.sh b/bootc/scripts/buildall.sh old mode 100644 new mode 100755