From 3d4e3638be12cf9c26198cd8bc82a5d55515e3b2 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Wed, 21 Dec 2016 15:13:51 -0800 Subject: [PATCH] Only check for platformReady prefix --- scripts/cloudron-setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/cloudron-setup b/scripts/cloudron-setup index 4c4e2759a..b0fafc278 100755 --- a/scripts/cloudron-setup +++ b/scripts/cloudron-setup @@ -167,7 +167,7 @@ fi echo -n "=> Waiting for cloudron to be ready ... (this takes some time)" while true; do echo -n "." - if journalctl -u box -a | grep "platformReady: configured, resuming tasks" >/dev/null; then + if journalctl -u box -a | grep "platformReady: " >/dev/null; then break fi sleep 10