From ee6bc002fb934f286bd35b04b139da437a3886d9 Mon Sep 17 00:00:00 2001 From: Rui Lopes Date: Sat, 28 Mar 2020 08:50:03 +0000 Subject: [PATCH] bump the number of cpus to recommended minimum of 4 to prevent warning --- Vagrantfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 78e4678..518566c 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -8,14 +8,14 @@ nexus_ip = '192.168.56.3' Vagrant.configure(2) do |config| config.vm.provider :libvirt do |lv, config| lv.memory = 2048 - lv.cpus = 2 + lv.cpus = 4 lv.cpu_mode = 'host-passthrough' lv.keymap = 'pt' end config.vm.provider :virtualbox do |vb| vb.linked_clone = true - vb.cpus = 2 + vb.cpus = 4 vb.memory = 2048 end