diff options
Diffstat (limited to 'Vagrantfile')
-rw-r--r--[-rwxr-xr-x] | Vagrantfile | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/Vagrantfile b/Vagrantfile index b3647ad2b..c2ad471a2 100755..100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,9 +1,6 @@ # -*- mode: ruby -*- # vi: set ft=ruby : -BOX_NAME = ENV['BOX_NAME'] || "precise64" -BOX_URI = ENV['BOX_URI'] || "http://files.vagrantup.com/precise64.box" - # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! VAGRANTFILE_API_VERSION = "2" @@ -13,11 +10,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # please see the online documentation at vagrantup.com. # Every Vagrant virtual environment requires a box to build off of. - config.vm.box = BOX_NAME - - # The url from where the 'config.vm.box' box will be fetched if it - # doesn't already exist on the user's system. - config.vm.box_url = BOX_URI + config.vm.box = "ubuntu/xenial64" # Create a forwarded port mapping which allows access to a specific port # within the machine from a port on the host machine. In the example below, |