From 1f947e0f303762c053e9afb531ed88f434227d67 Mon Sep 17 00:00:00 2001 From: Bob Mazanec Date: Sat, 24 Oct 2020 13:35:17 -0500 Subject: [PATCH] Workaround Issue #167 per https://github.com/rails/rails-dev-box/issues/167#issuecomment-668251979 --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index 70374f0c..4adc649b 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -11,5 +11,6 @@ Vagrant.configure('2') do |config| config.vm.provider 'virtualbox' do |v| v.memory = ENV.fetch('RAILS_DEV_BOX_RAM', 2048).to_i v.cpus = ENV.fetch('RAILS_DEV_BOX_CPUS', 2).to_i + v.customize [ "modifyvm", :id, "--uartmode1", "file", File::NULL ] end end