From 0c4fad6f54f4bf9929ad8fe740164d4a66fd20da Mon Sep 17 00:00:00 2001 From: "cam.lafit" Date: Fri, 6 May 2016 09:48:41 +0200 Subject: [PATCH] Get official ubuntu box * Is not needed to set url box, we can get directly box from https://atlas.hashicorp.com/ubuntu --- Vagrantfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index b8c467b..9b3511d 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,7 +1,6 @@ Vagrant.configure("2") do |config| - config.vm.box = "precise64" - config.vm.box_url = "http://files.vagrantup.com/precise64.box" + config.vm.box = "ubuntu/precise64" config.vm.network :private_network, ip: "10.10.10.10" config.ssh.forward_agent = true @@ -14,4 +13,4 @@ Vagrant.configure("2") do |config| config.vm.provision :shell, :path => "server_config/server_install.sh" -end \ No newline at end of file +end