summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xci/deploy/deploy.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/deploy/deploy.sh b/ci/deploy/deploy.sh
index c89b17b7..b04cf713 100755
--- a/ci/deploy/deploy.sh
+++ b/ci/deploy/deploy.sh
@@ -559,10 +559,10 @@ sleep 10
if [ $IS_BARE == 0 ];then
if [ $TARGET_HOSTS_NUM == 1 ];then
- virsh reboot all_in_one
+ virsh reset all_in_one
else
for ((i=0;i<${#VM_MULTINODE[@]};i++));do
- virsh reboot ${VM_MULTINODE[$i]}
+ virsh reset ${VM_MULTINODE[$i]}
done
fi
fi