summaryrefslogtreecommitdiffstats
path: root/deploy/check_openstack_progress.sh
diff options
context:
space:
mode:
Diffstat (limited to 'deploy/check_openstack_progress.sh')
-rwxr-xr-xdeploy/check_openstack_progress.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/deploy/check_openstack_progress.sh b/deploy/check_openstack_progress.sh
index bbd631b6..e50eb332 100755
--- a/deploy/check_openstack_progress.sh
+++ b/deploy/check_openstack_progress.sh
@@ -23,8 +23,8 @@ while true; do
tail -n 200 /var/log/daisy/kolla_$cluster_id*
exit 1
else
- progress=`daisy host-list --cluster-id $cluster_id |grep DISCOVERY_SUCCESSFUL |awk -F "|" '{print $11}'|sed s/[[:space:]]//g`
- echo " openstack in installing , progress is $progress%"
+ progress=`daisy host-list --cluster-id $cluster_id |grep DISCOVERY_SUCCESSFUL |awk -F "|" '{print $11}'|sed s/[[:space:]]//g|sed ':a;N;$ s/\n/ /g;ba'`
+ echo " openstack in installing , progress of each node is $progress%"
sleep 30
fi
done