From aa7314caca5f310ca950dab558e97325b2277382 Mon Sep 17 00:00:00 2001 From: Anuj Date: Fri, 7 Feb 2020 10:49:08 +0530 Subject: [PATCH] increases boot timeout to 600 secs as the VM may take longer than 5 mins to boot --- Vagrantfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index c5cf7151..0bdf8621 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -8,6 +8,8 @@ Vagrant.configure('2') do |config| config.vm.provision :shell, path: 'bootstrap.sh', keep_color: true + config.vm.boot_timeout = 600 + 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