move agentx support to 6.9

This commit is contained in:
mischa 2020-10-26 09:42:42 +01:00
parent df611725ed
commit f0ec6377a2
1 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@
# 2020/05/10 changed: includes all install sets, inline with sysupgrade # 2020/05/10 changed: includes all install sets, inline with sysupgrade
# 2020/05/22 changed: set the hosts password for the users # 2020/05/22 changed: set the hosts password for the users
# 2020/05/24 changed: add staggered option to vm.conf, leave disable for now # 2020/05/24 changed: add staggered option to vm.conf, leave disable for now
# 2020/09/20 changed: add agentx option to vm.conf for OpenBSD 6.8 # 2020/09/20 changed: add agentx option to vm.conf for OpenBSD 6.9
# 2020/10/25 changes: doas.conf for pkill option, so it works again # 2020/10/25 changes: doas.conf for pkill option, so it works again
# #
use 5.024; use 5.024;
@ -83,7 +83,7 @@ sub render_vm_conf {
printf $fh_vm "#\n# File generated by deploy.pl\n#\n"; printf $fh_vm "#\n# File generated by deploy.pl\n#\n";
printf $fh_vm "socket owner :%s\n", $conf{'conf'}{'VMDUSERS'}; printf $fh_vm "socket owner :%s\n", $conf{'conf'}{'VMDUSERS'};
printf $fh_vm "staggered start parallel 2 delay 90\n"; printf $fh_vm "staggered start parallel 2 delay 90\n";
if ($_VERSION > 6.7) { if ($_VERSION > 6.8) {
printf $fh_vm "agentx\n"; printf $fh_vm "agentx\n";
} }
printf $fh_vm "\n"; printf $fh_vm "\n";