From 0b57e3be28f1b42d7cea436feb04fbcdf83e8484 Mon Sep 17 00:00:00 2001 From: Yao Lu Date: Tue, 29 Nov 2016 22:39:37 +0800 Subject: implement deploy on virthal pod Change-Id: I600e21f0d36f37c75cac4ace5f7225e32ab93d56 Signed-off-by: Yao Lu --- deploy/check_os_progress.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 deploy/check_os_progress.sh (limited to 'deploy/check_os_progress.sh') diff --git a/deploy/check_os_progress.sh b/deploy/check_os_progress.sh new file mode 100755 index 00000000..bf44fe28 --- /dev/null +++ b/deploy/check_os_progress.sh @@ -0,0 +1,22 @@ +#!/bin/bash +source /root/daisyrc_admin +cluster_id=`daisy cluster-list | awk -F "|" '{print $2}' | sed -n '4p'` +daisy install $cluster_id --skip-pxe-ipmi true +echo "check os installing progress..." +while true; do + os_install_active=`daisy host-list --cluster-id $cluster_id | awk -F "|" '{print $8}' | grep -c "active" ` + os_install_failed=`daisy host-list --cluster-id $cluster_id | awk -F "|" '{print $8}' | grep -c "install-failed" ` + if [ $os_install_active -eq 1 ]; then + echo "os installing successful ..." + break + elif [ $os_install_failed -gt 0 ]; then + echo "os installing have failed..." + exit 1 + else + progress=`daisy host-list --cluster-id $cluster_id |grep DISCOVERY_SUCCESSFUL |awk -F "|" '{print $7}'|sed s/[[:space:]]//g` + echo "os in installing, the progress is $progress%" + sleep 10 + fi +done +systemctl disable dhcpd +systemctl stop dhcpd -- cgit 1.2.3-korg