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
This commit is contained in:
parent
2d8e2be5a4
commit
08f2b3a76e
8
labs/Vagrantfile
vendored
8
labs/Vagrantfile
vendored
@ -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|
|
||||
|
Loading…
x
Reference in New Issue
Block a user