From 3576397198a115bfbb5843365e37ffb75fea5223 Mon Sep 17 00:00:00 2001 From: mischa Date: Sun, 15 Oct 2023 14:06:05 +0200 Subject: [PATCH] adding 5 seconds wait after VM started, workaround to prevent the vmd process to hang --- startall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/startall.sh b/startall.sh index 6a8275a..5b45ab9 100755 --- a/startall.sh +++ b/startall.sh @@ -29,7 +29,7 @@ echo "Starting ${#VMS[*]} VMs on ${CPU} CPUs in ${CYCLES} cycle(s), waiting ${SL COUNTER=0 for i in ${VMS[*]}; do COUNTER=$((${COUNTER}+1)) - vmctl start ${i} + vmctl start ${i} ; sleep 5 if [ $COUNTER -eq $CPU ]; then sleep ${SLEEP} COUNTER=0