From 365111f3bb8abd5ffb9faebaaffcaaab0a785a8d Mon Sep 17 00:00:00 2001 From: Ricardo Aielo Date: Sun, 22 Sep 2019 13:07:46 -0300 Subject: [PATCH] Box switched to hashicorp/bionic64 and supported providers adjusted --- Vagrantfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 41a80253b..9004ec678 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -4,11 +4,11 @@ # Ruby, run unit tests, etc. Vagrant.configure("2") do |config| - config.vm.box = "ubuntu/bionic64" + config.vm.box = "hashicorp/bionic64" config.vm.hostname = "vagrant" config.ssh.shell = "bash -c 'BASH_ENV=/etc/profile exec bash'" - ["vmware_fusion", "vmware_workstation", "virtualbox"].each do |provider| + ["vmware_desktop", "virtualbox", "hyperv"].each do |provider| config.vm.provider provider do |v, override| v.memory = "2048" end