From 08f2b3a76eb2dbc1031e3abe3af881a61852a14d Mon Sep 17 00:00:00 2001 From: Roger Luethi Date: Sat, 9 Aug 2014 16:33:06 +0200 Subject: [PATCH] Update Vagrantfile from Ubuntu 12.04 to 14.04 We have changed the osbash default from Ubuntu 12.04 LTS to Ubuntu 14.04 LTS. It's time for the Vagrant scripts to do the same. Change-Id: Ide4180544aded732ca22e971e944dbe2f0717209 --- labs/Vagrantfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/labs/Vagrantfile b/labs/Vagrantfile index a03fe278..bbd2e155 100644 --- a/labs/Vagrantfile +++ b/labs/Vagrantfile @@ -55,15 +55,15 @@ VAGRANTFILE_API_VERSION = "2" Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # Every Vagrant virtual environment requires a box (similar to OVA) to build - # from. The Vagrantfile currently uses Ubuntu 12.04 LTS (aka Precise - # Pangolin). Modify the line below and the box_url line to use a different + # from. The Vagrantfile currently uses Ubuntu 14.04 LTS (aka Trusty + # Thar). Modify the line below and the box_url line to use a different # distribution - config.vm.box = "precise64" + config.vm.box = "ubuntu/trusty64" # 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 = "http://files.vagrantup.com/precise64.box" + config.vm.box_url = "https://vagrantcloud.com/ubuntu/trusty64" # Define each VM's settings (ex: hostname, IP address, RAM, vCPU, etc.) nodes.each do |prefix, fourth_octet|