From 2c16cd5a8cc373f70d6fa4d225237ed678592b1e Mon Sep 17 00:00:00 2001 From: James Slagle Date: Fri, 23 Jan 2015 07:27:35 -0500 Subject: [PATCH] Increase ssh wait timeout and disable password auth so we don't accidnetally hit it before cloud-init has configured the ssh key --- scripts/instack-ironic-deployment | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/instack-ironic-deployment b/scripts/instack-ironic-deployment index ad28b7c60..05adfc95e 100755 --- a/scripts/instack-ironic-deployment +++ b/scripts/instack-ironic-deployment @@ -127,7 +127,7 @@ function wait_for_ssh { ips=$(nova list | tail -n +4 | head -n -1 | awk '{print $12}' | cut -d= -f2) for ip in $ips; do echo -n " checking $ip ... " - tripleo wait_for 180 1 ssh -o "StrictHostKeyChecking=no" root@$ip ls + tripleo wait_for 300 1 ssh -o "PasswordAuthentication=no" -o "StrictHostKeyChecking=no" root@$ip ls echo "DONE." done echo