From fd117a50daa5b99e79fe7f8adc781902d5945d34 Mon Sep 17 00:00:00 2001 From: Veiko Aasa Date: Sat, 12 Apr 2025 09:59:58 +0300 Subject: [PATCH] container: Fix waiting until plinth setup is finished when running tests Tests performed: - Without starting `freedombox-develop` inside the container, `./container run-tests ...` waits until plinth setup is finished and then runs the functional tests. Signed-off-by: Veiko Aasa Reviewed-by: Sunil Mohan Adapa --- container | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container b/container index 7b87cea95..9d9829e31 100755 --- a/container +++ b/container @@ -249,7 +249,7 @@ then else echo -n "> In machine: Starting plinth ... " sudo -u plinth /freedombox/run --develop > plinth.log 2>&1 & - while ! grep -q "Setup thread finished" plinth.log + while ! grep -q "Setup finished" plinth.log do sleep 1 echo -n .