adding 5 seconds wait after VM started, workaround to prevent the vmd process to hang

This commit is contained in:
mischa 2023-10-15 14:06:05 +02:00
parent eb0f18651f
commit 3576397198
1 changed files with 1 additions and 1 deletions

View File

@ -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