mirror of https://github.com/zulip/zulip.git
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:
parent
28b6af5c4b
commit
e0dc0062eb
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue