From 05d9ed19e6360537fef600efb49c56a82246d84f Mon Sep 17 00:00:00 2001 From: Ethan Davidson Date: Tue, 9 Jul 2019 15:15:26 -0400 Subject: [PATCH] use shorthand name for box files.vagrantup.com redirects to hashicorp-files.hashicorp.com which is no longer active. https://github.com/hashicorp/vagrant/issues/9847 --- Vagrantfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 561c01d00..ce7f8bbd0 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -27,8 +27,7 @@ EOF VAGRANTFILE_API_VERSION = "2" Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| - config.vm.box = "precise32" - config.vm.box_url = "http://files.vagrantup.com/precise32.box" + config.vm.box = "ubuntu/precise32" config.vm.define :lcb do |lcb| lcb.vm.network "forwarded_port", guest: 5000, host: 5000