move startx to 7.9

This commit is contained in:
mischa 2023-10-15 14:06:45 +02:00
parent 3576397198
commit da1080d4c8
1 changed files with 2 additions and 2 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 5.024;
use v5.36;
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.2) {
if ($_VERSION > 7.9) {
printf $fh_vm "agentx\n";
}