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.
This commit is contained in:
kadrianne 2020-06-10 11:34:36 -06:00 committed by Tim Abbott
parent 28b6af5c4b
commit e0dc0062eb
1 changed files with 1 additions and 1 deletions

2
Vagrantfile vendored
View File

@ -114,7 +114,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end end
config.vm.provider "virtualbox" do |vb, override| 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 # 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 # 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 # caused upstream by the base box containing a Vagrantfile with a similar