summaryrefslogtreecommitdiffstats
path: root/deploy/check_os_progress.sh
diff options
context:
space:
mode:
Diffstat (limited to 'deploy/check_os_progress.sh')
-rwxr-xr-xdeploy/check_os_progress.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/deploy/check_os_progress.sh b/deploy/check_os_progress.sh
index c631a713..b7b05700 100755
--- a/deploy/check_os_progress.sh
+++ b/deploy/check_os_progress.sh
@@ -36,10 +36,17 @@ done
source /root/daisyrc_admin
cluster_id=`daisy cluster-list | awk -F "|" '{print $2}' | sed -n '4p'`
+hosts_id=`daisy host-list | awk -F "|" '{print $2}'| grep -o "[^ ]\+\( \+[^ ]\+\)*"|tail -n +2`
skip=false
if [ $deploy_env == 0 ];then
skip=true
+ for host_id in $hosts_id;
+ do
+ echo "update host $host_id ipmi user and passwd"
+ daisy host-update $host_id --ipmi-user zteroot --ipmi-passwd superuser
+ done
fi
+echo "update all hosts ipmi user and passwd ok!"
echo "run daisy install command"
daisy install $cluster_id --skip-pxe-ipmi $skip