From 87bcc183353e7e059a6368e6a6536a0825639b0f Mon Sep 17 00:00:00 2001 From: mischa Date: Sun, 24 May 2020 13:11:17 +0200 Subject: [PATCH] revert #disable, needs redesign of deploy process --- deploy.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy.pl b/deploy.pl index a92a83a..f245bf4 100755 --- a/deploy.pl +++ b/deploy.pl @@ -24,7 +24,7 @@ # 2019/09/29 added: doas.conf for pkill option # 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 and #disable +# 2020/05/24 changed: add staggered option to vm.conf, leave disable for now # use 5.024; use strict; @@ -103,7 +103,7 @@ sub render_vm_conf { my $_mac = $vms{$vm_name}{'mac'} || $conf{'conf'}{'MAC_PREFIX'} . ":" . $vms{$vm_name}{'vm_number'}; printf $fh_vm "vm \"%s\" {\n", $_instance; - printf $fh_vm "\t#disable\n"; + printf $fh_vm "\tdisable\n"; printf $fh_vm "\towner %s\n", $_owner; printf $fh_vm "\tmemory %s\n", $_memory if $_memory; printf $fh_vm "\tboot \"%s\"\n", $_boot if (! -e $_disk);