From f0ec6377a2ce34553a1daff1373350ec1771ac73 Mon Sep 17 00:00:00 2001 From: mischa Date: Mon, 26 Oct 2020 09:42:42 +0100 Subject: [PATCH] move agentx support to 6.9 --- deploy.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy.pl b/deploy.pl index 0b6d941..c8c7ca8 100755 --- a/deploy.pl +++ b/deploy.pl @@ -25,7 +25,7 @@ # 2020/05/10 changed: includes all install sets, inline with sysupgrade # 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/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 # 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 "socket owner :%s\n", $conf{'conf'}{'VMDUSERS'}; 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 "\n";