From: Peter van Dijk Date: Mon, 7 Mar 2022 08:09:51 +0000 (+0100) Subject: auth deb test: upstream more lenient startup wait X-Git-Tag: rec-4.7.0-beta1~71^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F11395%2Fhead;p=thirdparty%2Fpdns.git auth deb test: upstream more lenient startup wait --- diff --git a/builder-support/debian/authoritative/debian-buster/tests-source/launch-pdns b/builder-support/debian/authoritative/debian-buster/tests-source/launch-pdns index 1af9470799..d0c0cf5b70 100755 --- a/builder-support/debian/authoritative/debian-buster/tests-source/launch-pdns +++ b/builder-support/debian/authoritative/debian-buster/tests-source/launch-pdns @@ -11,6 +11,8 @@ trap cleanup EXIT 2>&1 | tee "$LOGFILE") & echo "Waiting for pdns_server to start..." -while grep "About to" "$LOGFILE"; do +while grep "Done launching threads" "$LOGFILE"; do sleep 2 done +# final 2 second sleep just in case. +sleep 2