diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2018-03-27 12:48:15 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2018-04-18 12:43:33 +0100 |
commit | 274ca52df93495123e09a1f8b08dbe1411a2dc32 (patch) | |
tree | 564c9e0181b8ec554ceda36abc6b488692e13eea /Vagrantfile | |
parent | ee28ece4c42d87dc45f5bda2aafb860c2eb317e7 (diff) |
Update Vagrantfile to use Xenial.
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, |