Update name of Ubuntu vagrant box

This fixes an error in Vagrant, where an error occurs when trying
to run "vagrant up":

	The box you're adding has a name different from the name you
	requested. For boxes with metadata, you cannot override the name.
	If you're adding a box using `vagrant box add`, don't specify
	the `--name` parameter. If the box is being added via a Vagrantfile,
	change the `config.vm.box` value to match the name below.

	Requested name: ubuntu1404
	Actual name: ubuntu/trusty64

Change-Id: If0a5eb34d3309baa085e8cfd69167ab07867be9f
This commit is contained in:
Sean M. Collins 2015-04-29 11:27:45 -04:00
parent 2684483866
commit 74bedc6fa8
1 changed files with 1 additions and 1 deletions

2
vagrant/Vagrantfile vendored
View File

@ -17,7 +17,7 @@ VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "ubuntu1404"
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.