From 57a816ab6f8b0ed57c577b2f7374fdc9f552a7ae Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Sat, 4 Nov 2023 11:40:15 +0100 Subject: [PATCH] failure to find guest ip is not fatal --- lbuild-initvm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbuild-initvm.sh b/lbuild-initvm.sh index 9dc96c08..59ba47ee 100755 --- a/lbuild-initvm.sh +++ b/lbuild-initvm.sh @@ -905,7 +905,7 @@ function wait_for_ssh () { local counter=1 while [ "$current_time" -lt "$stop_time" ] ; do echo "$counter-th attempt to reach sshd in container $lxc ..." - [ -z "$guest_ip" ] && guest_ip=$(guest_ipv4 $lxc) + [ -z "$guest_ip" ] && guest_ip=$(guest_ipv4 $lxc) || : [ -n "$guest_ip" ] && ssh -o "StrictHostKeyChecking no" $guest_ip arch && { success=true; echo "SSHD in container $lxc is UP on IP $guest_ip"; break ; } || : # some of our boxes have gone through a long upgrade historically, and -- 2.43.0