From 7f62b7d3c9c3edc3c1e97ba9d76cf6c76649af3e Mon Sep 17 00:00:00 2001
From: Benoit Donneaux <benoit@leastauthority.com>
Date: Fri, 16 Jun 2023 08:05:10 +0000
Subject: [PATCH] Leave the default cpus to 1 as before

Signed-off-by: Benoit Donneaux <benoit@leastauthority.com>
---
 morph/grid/local/Vagrantfile | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/morph/grid/local/Vagrantfile b/morph/grid/local/Vagrantfile
index 8197b17d..b9b7bf8c 100644
--- a/morph/grid/local/Vagrantfile
+++ b/morph/grid/local/Vagrantfile
@@ -22,8 +22,9 @@ Vagrant.configure("2") do |config|
 
   # Tune LibVirt/QEmu guests
   config.vm.provider :libvirt do |domain|
-    # One CPU should work
-    domain.cpus = 1
+    # The default of one CPU should work
+    # Increase to speed up boot/push/deploy
+    # domain.cpus = 1
 
     # To use the self-updating deployment system you need more memory.  Giving
     # all of the VMs enough memory for this is rather taxing, though, and the
-- 
GitLab