Compare commits

..

No commits in common. "da1080d4c8de7b5e2e41a156742743e6b2a9a2af" and "eb0f18651f0f698534138f8ad3c19d7166c1f6c0" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@
# 2023/05/03 added: predefined IPv6 address, gw
# 2023/05/08 added: DHCPD=no to not overwrite existing dhcpd.conf, does require config for autoinstall(8)
#
use v5.36;
use 5.024;
use strict;
use warnings;
use autodie;
@ -92,7 +92,7 @@ sub render_vm_conf {
printf $fh_vm "#\n# File generated by deploy.pl\n#\n";
printf $fh_vm "socket owner :%s\n", $conf{'conf'}{'VMDUSERS'};
printf $fh_vm "staggered start parallel 2 delay 90\n";
if ($_VERSION > 7.9) {
if ($_VERSION > 7.2) {
printf $fh_vm "agentx\n";
}

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} ; sleep 5
vmctl start ${i}
if [ $COUNTER -eq $CPU ]; then
sleep ${SLEEP}
COUNTER=0