Bill Farner created AURORA-683:
----------------------------------
Summary: vagrant up fails due to missing box ubuntu/trusty64
Key: AURORA-683
URL: https://issues.apache.org/jira/browse/AURORA-683
Project: Aurora
Issue Type: Bug
Components: Testing
Reporter: Bill Farner
Priority: Blocker
{noformat}
$ vagrant up
Bringing machine 'devcluster' up with 'virtualbox' provider...
There are errors in the configuration of this machine. Please fix
the following errors and try again:
vm:
* The box 'ubuntu/trusty64' could not be found.
{noformat}
Appears to be caused by this change:
{noformat}
$ git show 467bc56049cc775eaf61520a464b363d44023024 Vagrantfile
commit 467bc56049cc775eaf61520a464b363d44023024
Author: Joe Smith <[email protected]>
Date: Wed Sep 3 15:55:17 2014 -0700
Increment Mesos version to 0.20.0
Bugs closed: AURORA-674
Reviewed at https://reviews.apache.org/r/25208/
diff --git a/Vagrantfile b/Vagrantfile
index c8cb2d4..ea0b252 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -18,11 +18,7 @@
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
- config.vm.box = "precise64"
-
- # 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 = "ubuntu/trusty64"
config.vm.define "devcluster" do |dev|
dev.vm.network :private_network, ip: "192.168.33.7"
{noformat}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)