From 4fedfb377da393d7fe22ca8781a964e9759a18ce Mon Sep 17 00:00:00 2001 From: downtownallday Date: Tue, 10 Sep 2024 14:53:12 -0400 Subject: [PATCH] during wait for boot, also wait until vm has an ip address --- tests/bin/lx_functions.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/tests/bin/lx_functions.sh b/tests/bin/lx_functions.sh index 2faec0a2..b64a77fc 100644 --- a/tests/bin/lx_functions.sh +++ b/tests/bin/lx_functions.sh @@ -201,7 +201,25 @@ lx_wait_for_boot() { echo "" echo -n "Wait for cloud-init " lxc --project "$project" exec "$inst" -- cloud-init status --wait + local rc=$? + + if [ $rc -eq 0 ]; then + echo "Wait for ip address " + local ip="" + local count=0 + while [ $count -lt 10 ]; do + let count+=1 + ip="$(lxc --project "$project" exec "$inst" -- hostname -I | awk '{print $1}')" + rc=$? + echo " [${count}] got: $ip" + if [ $rc -ne 0 -o "$ip" != "" ];then + break + fi + sleep 5 + done + fi echo "" + return $rc } lx_get_ssh_identity() {