From e0dc0062eb181d0acc5c011b727c1b22cf50ee4e Mon Sep 17 00:00:00 2001 From: kadrianne Date: Wed, 10 Jun 2020 11:34:36 -0600 Subject: [PATCH] vagrant: Switch VM box to the Hashicorp release. This is important because the Hashicorp boxes are better designed, and in particular, https://www.vagrantup.com/docs/boxes.html recommends using the hashicorp boxes over the "ubuntu" namespace. --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index c188b6c35c..b4b2c441c3 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -114,7 +114,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| end config.vm.provider "virtualbox" do |vb, override| - override.vm.box = "ubuntu/bionic64" + override.vm.box = "hashicorp/bionic64" # An unnecessary log file gets generated when running vagrant up for the # first time with the Ubuntu Bionic box. This looks like it is being # caused upstream by the base box containing a Vagrantfile with a similar