Only check for platformReady prefix

This commit is contained in:
Girish Ramakrishnan
2016-12-21 15:13:51 -08:00
parent f07e6b29a3
commit 3d4e3638be

View File

@@ -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