From 7abfab98709661734489f5a6f5654b0c36822cc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1zaro=20Nixon?= Date: Mon, 15 May 2023 11:54:32 -0300 Subject: [PATCH] Don't update vs guest For some reason, I was having an infinite wait on `vagrant up`. `VirtualBox Guest Additions: reloading kernel modules and services` --- Vagrantfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 2d18f103..5a701f34 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -7,6 +7,8 @@ Vagrant.configure('2') do |config| config.vm.network :forwarded_port, guest: 3000, host: 3000 config.vm.provision :shell, path: 'bootstrap.sh', keep_color: true + + config.vbguest.auto_update = false config.vm.provider 'virtualbox' do |v| v.memory = ENV.fetch('RAILS_DEV_BOX_RAM', 2048).to_i