Skip to content
This repository has been archived by the owner on Oct 16, 2020. It is now read-only.

error: You specified a box version constraint with a direct box file path #1365

Closed
crawford opened this issue Sep 4, 2014 · 31 comments
Closed

Comments

@crawford
Copy link
Contributor

crawford commented Sep 4, 2014


Issue by hustcat


$ vagrant up
Bringing machine 'core-01' up with 'virtualbox' provider...
Bringing machine 'core-02' up with 'virtualbox' provider...
Bringing machine 'core-03' up with 'virtualbox' provider...
==> core-01: Box 'coreos-beta' could not be found. Attempting to find and install...
core-01: Box Provider: virtualbox
core-01: Box Version: >= 308.0.1
You specified a box version constraint with a direct box file
path. Box version constraints only work with boxes from Vagrant
Cloud or a custom box host. Please remove the version constraint
and try again.

what's wrong?

@crawford
Copy link
Contributor Author

crawford commented Sep 4, 2014


Comment by bcwaldon


@hustcat Have you modified Vagrantfile manually?

@crawford
Copy link
Contributor Author

crawford commented Sep 4, 2014


Comment by jonboulle


also, what does your config.rb look like?
#163 #65

@crawford
Copy link
Contributor Author

crawford commented Sep 5, 2014


Comment by hustcat


@bcwaldon, I haven't modify Vagrantfile. My Mac OS as follows:

$ uname -a
Darwin yinyedeMacBook-Pro.local 13.3.0 Darwin Kernel Version 13.3.0: Tue Jun 3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64 x86_64

Then, I comment this line, run successfully.
Vagrant.configure("2") do |config|
config.vm.box = "coreos-%s" % $update_channel
#config.vm.box_version = ">= 308.0.1"
config.vm.box_url = "http://%s.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json" % $update_channel

@crawford
Copy link
Contributor Author

crawford commented Sep 5, 2014


Comment by hustcat


@jonboulle , I modified two lines:

Size of the CoreOS cluster created by Vagrant

#$num_instances=1
$num_instances=3

Official CoreOS channel from which updates should be downloaded

#$update_channel='alpha'
$update_channel='beta'

@crawford
Copy link
Contributor Author

crawford commented Sep 5, 2014


Comment by bcwaldon


@hustcat To clarify on the config.rb point, did you first copy config.rb.sample to config.rg before changing those values?

When you bring the cluster up without the version constraint, what is the output of cat /etc/os-release from inside one of the VMs?

@crawford
Copy link
Contributor Author

crawford commented Sep 5, 2014


Comment by bcwaldon


@hustcat What version of vagrant are you running?

@crawford
Copy link
Contributor Author


Comment by dfarrell07


I'm seeing this behavior as well. Here are my user-data, config.rb and Vagrantfiles.

[~]$ vagrant --version
Vagrant 1.6.5
[~]$ uname -a
Linux localhost.localdomain 3.16.3-200.fc20.x86_64 #1 SMP Wed Sep 17 22:34:21 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

@crawford
Copy link
Contributor Author

crawford commented Oct 8, 2014


Comment by pwaterz


Same problem here
Vagrant 1.6.3

I even tried adding the .box file manually and still can not get the boxes to install

If uncomment
#config.vm.box_version = ">= 308.0.1"
it works

@crawford
Copy link
Contributor Author


Comment by jonboulle


@pwaterz if you comment, or uncomment?

@crawford
Copy link
Contributor Author


Comment by pwaterz


Haha my bad

If I comment out

config.vm.box_version = ">= 308.0.1"

In the vagrant file it works

Also add that I updated to vagrant 1.6.5 and am still seeing the same problem

@crawford
Copy link
Contributor Author


Comment by jonboulle


@pwaterz can you reproduce this consistently on a clean checkout? I'm struggling to reproduce it at all :-(

@crawford
Copy link
Contributor Author


Comment by pwaterz


@jonboulle Every single time I try to run vagrant up I run into this issue. It just hangs on the version line. I am running Mac OSX 10 10.9.5, Vagrant 1.6.5

dn5272oh:coreos-vagrant pwaters$ vagrant up
Bringing machine 'core-01' up with 'virtualbox' provider...
Bringing machine 'core-02' up with 'virtualbox' provider...
Bringing machine 'core-03' up with 'virtualbox' provider...
==> core-01: Box 'coreos-stable' could not be found. Attempting to find and install...
core-01: Box Provider: virtualbox
core-01: Box Version: >= 308.0.1

@crawford
Copy link
Contributor Author


Comment by pwaterz


Here is my config.rb

# To automatically replace the discovery token on 'vagrant up', uncomment
# the lines below:
#
#if File.exists?('user-data') && ARGV[0].eql?('up')
# require 'open-uri'
# require 'yaml'
#
# token = open('https://discovery.etcd.io/new').read
#
# data = YAML.load(IO.readlines('user-data')[1..-1].join)
# data['coreos']['etcd']['discovery'] = token
#
# lines = YAML.dump(data).split("\n")
# lines[0] = '#cloud-config'
#
# open('user-data', 'r+') do |f|
# f.puts(lines.join("\n"))
# end
#end
#
#
# coreos-vagrant is configured through a series of configuration
# options (global ruby variables) which are detailed below. To modify
# these options, first copy this file to "config.rb". Then simply
# uncomment the necessary lines, leaving the $, and replace everything
# after the equals sign..

# Size of the CoreOS cluster created by Vagrant
$num_instances=3

# Official CoreOS channel from which updates should be downloaded
$update_channel='stable'

# Log the serial consoles of CoreOS VMs to log/
# Enable by setting value to true, disable with false
# WARNING: Serial logging is known to result in extremely high CPU usage with
# VirtualBox, so should only be used in debugging situations
#$enable_serial_logging=false

# Enable port forwarding of Docker TCP socket
# Set to the TCP port you want exposed on the *host* machine, default is 2375
# If 2375 is used, Vagrant will auto-increment (e.g. in the case of $num_instances > 1)
# You can then use the docker tool locally by setting the following env var:
# export DOCKER_HOST='tcp://127.0.0.1:2375'
#$expose_docker_tcp=2375

# Setting for VirtualBox VMs
#$vb_gui = false
#$vb_memory = 1024
#$vb_cpus = 1

@crawford
Copy link
Contributor Author


Comment by jonboulle


@pwaterz from here:

There's an error handing bug in vagrant: if the hostname of the box URI does not resolve, it triggers the above behaviour.

So I can actually force this to reproduce by munging the URL; for example, by setting an invalid $update_channel:

$ fgrep update_channel config.rb
$update_channel='broken'
$ vagrant up
Bringing machine 'core-01' up with 'virtualbox' provider...
Bringing machine 'core-02' up with 'virtualbox' provider...
Bringing machine 'core-03' up with 'virtualbox' provider...
==> core-01: Box 'coreos-broken' could not be found. Attempting to find and install...
 core-01: Box Provider: virtualbox
 core-01: Box Version: >= 308.0.1
You specified a box version constraint with a direct box file
path. Box version constraints only work with boxes from Vagrant
Cloud or a custom box host. Please remove the version constraint
and try again.

Can you confirm that

  • $update_channel is set correctly and results in the expected URL (for debugging, you can just add a line puts config.vm.box_url at line 33 of the Vagrantfile)
  • you can reach that URL normally (e.g. curl http://stable.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json works)

@crawford
Copy link
Contributor Author


Comment by pwaterz


I add this line right after the box url was being dynamically set

p config.vm.box_url

It outputted a valid box url of

http://stable.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json

@crawford
Copy link
Contributor Author


Comment by jonboulle


@pwaterz ok, and if you curl that exact URL?

@crawford
Copy link
Contributor Author


Comment by pwaterz


dn5272oh:coreos-vagrant pwaters$ curl http://stable.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json
{
"name": "coreos-stable",
"description": "CoreOS stable",
"versions": [{
"version": "444.4.0",
"providers": [{
"name": "virtualbox",
"url": "http://stable.release.core-os.net/amd64-usr/444.4.0/coreos_production_vagrant.box",
"checksum_type": "sha256",
"checksum": "1ae779c7ccbe22779227d4c7e56f3bc5ec1a13833c486374ac2f91768c1a1da2"
}]
}]
}
dn5272oh:coreos-vagrant pwaters$

@crawford
Copy link
Contributor Author


Comment by jonboulle


@pwaterz doh, I just realised vagrant does have a debugging mode (it's not listed in the help output).

Could you please run vagrant up --debug and paste the output into a gist? (It'll be very verbose - but if you like you can just find out where exactly it's erroring - e.g. for me I see a DEBUG subprocess: stderr: curl: (6) Couldn't resolve host 'asdf.release.core-os.net')

@crawford
Copy link
Contributor Author


Comment by pwaterz


n5272oh:coreos-vagrant pwaters$ vagrant up --debug
 INFO global: Vagrant version: 1.6.5
 INFO global: Ruby version: 2.0.0
 INFO global: RubyGems version: 2.0.14
 INFO global: VAGRANT_EXECUTABLE="/Applications/Vagrant/bin/../embedded/gems/gems/vagrant-1.6.5/bin/vagrant"
 INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="/Applications/Vagrant/bin/../embedded"
 INFO global: VAGRANT_INSTALLER_VERSION="2"
 INFO global: VAGRANT_DETECTED_OS="Darwin"
 INFO global: VAGRANT_INSTALLER_ENV="1"
 INFO global: VAGRANT_INTERNAL_BUNDLERIZED="1"
 INFO global: VAGRANT_LOG="debug"
 INFO global: Plugins:
 INFO global: - builder = 3.2.2
 INFO global: - bundler = 1.6.6
 INFO global: - excon = 0.39.6
 INFO global: - formatador = 0.2.5
 INFO global: - mime-types = 1.25.1
 INFO global: - net-ssh = 2.9.1
 INFO global: - net-scp = 1.1.2
 INFO global: - fog-core = 1.24.0
 INFO global: - multi_json = 1.10.1
 INFO global: - fog-json = 1.0.0
 INFO global: - inflecto = 0.0.2
 INFO global: - fog-brightbox = 0.5.1
 INFO global: - fog-softlayer = 0.3.18
 INFO global: - ipaddress = 0.8.0
 INFO global: - mini_portile = 0.6.0
 INFO global: - nokogiri = 1.6.3.1
 INFO global: - fog = 1.23.0
 INFO global: - json = 1.8.1
 INFO global: - rdoc = 4.1.2
 INFO global: - rest-client = 1.6.8
 INFO global: - vagrant-auto_network = 1.0.2
 INFO global: - vagrant-aws = 0.5.0
 INFO global: - vagrant-login = 1.0.1
 INFO global: - vagrant-share = 1.1.2
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/commands/box/plugin.rb
 INFO manager: Registered plugin: box command
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/commands/destroy/plugin.rb
 INFO manager: Registered plugin: destroy command
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/commands/global-status/plugin.rb
 INFO manager: Registered plugin: global-status command
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/commands/halt/plugin.rb
 INFO manager: Registered plugin: halt command
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/commands/help/plugin.rb
 INFO manager: Registered plugin: help command
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/commands/init/plugin.rb
 INFO manager: Registered plugin: init command
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/commands/list-commands/plugin.rb
 INFO manager: Registered plugin: list-commands command
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/commands/package/plugin.rb
 INFO manager: Registered plugin: package command
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/commands/plugin/plugin.rb
 INFO manager: Registered plugin: plugin command
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/commands/provision/plugin.rb
 INFO manager: Registered plugin: provision command
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/commands/rdp/plugin.rb
 INFO manager: Registered plugin: rdp command
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/commands/reload/plugin.rb
 INFO manager: Registered plugin: reload command
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/commands/resume/plugin.rb
 INFO manager: Registered plugin: resume command
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/commands/ssh/plugin.rb
 INFO manager: Registered plugin: ssh command
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/commands/ssh_config/plugin.rb
 INFO manager: Registered plugin: ssh-config command
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/commands/status/plugin.rb
 INFO manager: Registered plugin: status command
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/commands/suspend/plugin.rb
 INFO manager: Registered plugin: suspend command
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/commands/up/plugin.rb
 INFO manager: Registered plugin: up command
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/commands/version/plugin.rb
 INFO manager: Registered plugin: version command
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/communicators/ssh/plugin.rb
 INFO manager: Registered plugin: ssh communicator
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/communicators/winrm/plugin.rb
 INFO manager: Registered plugin: winrm communicator
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/arch/plugin.rb
 INFO manager: Registered plugin: Arch guest
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/coreos/plugin.rb
 INFO manager: Registered plugin: CoreOS guest
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/darwin/plugin.rb
 INFO manager: Registered plugin: Darwin guest
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/debian/plugin.rb
 INFO manager: Registered plugin: Debian guest
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/esxi/plugin.rb
 INFO manager: Registered plugin: ESXi guest.
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/fedora/plugin.rb
 INFO manager: Registered plugin: Fedora guest
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/freebsd/plugin.rb
 INFO manager: Registered plugin: FreeBSD guest
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/funtoo/plugin.rb
 INFO manager: Registered plugin: Funtoo guest
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/gentoo/plugin.rb
 INFO manager: Registered plugin: Gentoo guest
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/linux/plugin.rb
 INFO manager: Registered plugin: Linux guest.
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/mint/plugin.rb
 INFO manager: Registered plugin: Mint guest
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/netbsd/plugin.rb
 INFO manager: Registered plugin: NetBSD guest
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/nixos/plugin.rb
 INFO manager: Registered plugin: NixOS guest
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/omnios/plugin.rb
 INFO manager: Registered plugin: OmniOS guest.
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/openbsd/plugin.rb
 INFO manager: Registered plugin: OpenBSD guest
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/pld/plugin.rb
 INFO manager: Registered plugin: PLD Linux guest
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/redhat/plugin.rb
 INFO manager: Registered plugin: RedHat guest
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/smartos/plugin.rb
 INFO manager: Registered plugin: SmartOS guest.
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/solaris/plugin.rb
 INFO manager: Registered plugin: Solaris guest.
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/solaris11/plugin.rb
 INFO manager: Registered plugin: Solaris 11 guest.
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/suse/plugin.rb
 INFO manager: Registered plugin: SUSE guest
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/tinycore/plugin.rb
 INFO manager: Registered plugin: TinyCore Linux guest.
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/ubuntu/plugin.rb
 INFO manager: Registered plugin: Ubuntu guest
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/guests/windows/plugin.rb
 INFO manager: Registered plugin: Windows guest.
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/hosts/arch/plugin.rb
 INFO manager: Registered plugin: Arch host
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/hosts/bsd/plugin.rb
 INFO manager: Registered plugin: BSD host
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/hosts/darwin/plugin.rb
 INFO manager: Registered plugin: Mac OS X host
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/hosts/freebsd/plugin.rb
 INFO manager: Registered plugin: FreeBSD host
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/hosts/gentoo/plugin.rb
 INFO manager: Registered plugin: Gentoo host
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/hosts/linux/plugin.rb
 INFO manager: Registered plugin: Linux host
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/hosts/null/plugin.rb
 INFO manager: Registered plugin: null host
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/hosts/opensuse/plugin.rb
 INFO manager: Registered plugin: OpenSUSE host
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/hosts/redhat/plugin.rb
 INFO manager: Registered plugin: Red Hat host
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/hosts/slackware/plugin.rb
 INFO manager: Registered plugin: Slackware host
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/hosts/windows/plugin.rb
 INFO manager: Registered plugin: Windows host
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/kernel_v1/plugin.rb
 INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/kernel_v2/plugin.rb
 INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/providers/docker/plugin.rb
 INFO manager: Registered plugin: docker-provider
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/providers/hyperv/plugin.rb
 INFO manager: Registered plugin: Hyper-V provider
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/providers/virtualbox/plugin.rb
 INFO manager: Registered plugin: VirtualBox provider
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/provisioners/ansible/plugin.rb
 INFO manager: Registered plugin: ansible
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/provisioners/cfengine/plugin.rb
 INFO manager: Registered plugin: CFEngine Provisioner
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/provisioners/chef/plugin.rb
 INFO manager: Registered plugin: chef
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/provisioners/docker/plugin.rb
 INFO manager: Registered plugin: docker
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/provisioners/file/plugin.rb
 INFO manager: Registered plugin: file
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/provisioners/puppet/plugin.rb
 INFO manager: Registered plugin: puppet
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/provisioners/salt/plugin.rb
 INFO manager: Registered plugin: salt
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/provisioners/shell/plugin.rb
 INFO manager: Registered plugin: shell
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/synced_folders/nfs/plugin.rb
 INFO manager: Registered plugin: NFS synced folders
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/synced_folders/rsync/plugin.rb
 INFO manager: Registered plugin: RSync synced folders
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/synced_folders/smb/plugin.rb
 INFO manager: Registered plugin: SMB synced folders
 INFO global: Loading plugins!
 INFO manager: Registered plugin: vagrant-login
 INFO manager: Registered plugin: vagrant-share
 INFO manager: Registered plugin: auto_network
 INFO manager: Registered plugin: AWS
 INFO vagrant: `vagrant` invoked: ["up", "--debug"]
DEBUG vagrant: Creating Vagrant environment
 INFO environment: Environment initialized (#<Vagrant::Environment:0x00000101104be8>)
 INFO environment: - cwd: /Users/pwaters/coreos-vagrant
 INFO environment: Home path: /Users/pwaters/.vagrant.d
 INFO environment: Local data path: /Users/pwaters/coreos-vagrant/.vagrant
DEBUG environment: Creating: /Users/pwaters/coreos-vagrant/.vagrant
 INFO environment: Running hook: environment_plugins_loaded
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x000001028586a0>
 INFO environment: Running hook: environment_load
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 3 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x000001012b6888>
 INFO warden: Calling IN action: #<AutoNetwork::Action::LoadPool:0x000001012c66e8>
 INFO warden: Calling IN action: #<AutoNetwork::Action::FilterNetworks:0x000001012c6698>
 INFO warden: Calling OUT action: #<AutoNetwork::Action::FilterNetworks:0x000001012c6698>
 INFO warden: Calling OUT action: #<AutoNetwork::Action::LoadPool:0x000001012c66e8>
 INFO cli: CLI: [] "up" []
DEBUG cli: Invoking command class: VagrantPlugins::CommandUp::Command []
DEBUG command: 'Up' each target VM...
 INFO loader: Set :root = #<Pathname:/Users/pwaters/coreos-vagrant/Vagrantfile>
DEBUG loader: Populating proc cache for #<Pathname:/Users/pwaters/coreos-vagrant/Vagrantfile>
DEBUG loader: Load procs for pathname: /Users/pwaters/coreos-vagrant/Vagrantfile
 INFO root: Version requirements from Vagrantfile: [">= 1.6.0"]
 INFO root: - Version requirements satisfied!
 INFO loader: Loading configuration in order: [:home, :root]
DEBUG loader: Loading from: root (evaluating)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG command: Getting target VMs for command. Arguments:
DEBUG command: -- names: ["core-01", "core-02", "core-03"]
DEBUG command: -- options: {:provider=>nil}
DEBUG command: Finding machine that match name: core-01
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.14r95030
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.14
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO environment: Getting machine: core-01 (virtualbox)
 INFO environment: Uncached load of machine.
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.14r95030
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.14
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO loader: Set "2160614120_machine_core-01" = [["2", #<Proc:0x000001011c4358@/Users/pwaters/coreos-vagrant/Vagrantfile:51>]]
DEBUG loader: Populating proc cache for ["2", #<Proc:0x000001011c4358@/Users/pwaters/coreos-vagrant/Vagrantfile:51>]
 INFO loader: Loading configuration in order: [:home, :root, "2160614120_machine_core-01"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: 2160614120_machine_core-01 (evaluating)
DEBUG provisioner: Provisioner defined: file
DEBUG provisioner: Provisioner defined: shell
DEBUG loader: Configuration loaded successfully, finalizing and returning
 INFO machine: Initializing machine: core-01
 INFO machine: - Provider: VagrantPlugins::ProviderVirtualBox::Provider
 INFO machine: - Box:
 INFO machine: - Data dir: /Users/pwaters/coreos-vagrant/.vagrant/machines/core-01/virtualbox
DEBUG virtualbox: Instantiating the driver for machine ID: nil
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.14r95030
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.14
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
DEBUG command: Finding machine that match name: core-02
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.14r95030
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.14
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO environment: Getting machine: core-02 (virtualbox)
 INFO environment: Uncached load of machine.
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.14r95030
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.14
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO loader: Set "2160614120_machine_core-02" = [["2", #<Proc:0x000001011cfeb0@/Users/pwaters/coreos-vagrant/Vagrantfile:51>]]
DEBUG loader: Populating proc cache for ["2", #<Proc:0x000001011cfeb0@/Users/pwaters/coreos-vagrant/Vagrantfile:51>]
 INFO loader: Loading configuration in order: [:home, :root, "2160614120_machine_core-02"]
ERROR loader: Unknown config sources: ["2160614120_machine_core-01"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: 2160614120_machine_core-02 (evaluating)
DEBUG provisioner: Provisioner defined: file
DEBUG provisioner: Provisioner defined: shell
DEBUG loader: Configuration loaded successfully, finalizing and returning
 INFO machine: Initializing machine: core-02
 INFO machine: - Provider: VagrantPlugins::ProviderVirtualBox::Provider
 INFO machine: - Box:
 INFO machine: - Data dir: /Users/pwaters/coreos-vagrant/.vagrant/machines/core-02/virtualbox
DEBUG virtualbox: Instantiating the driver for machine ID: nil
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.14r95030
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.14
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
DEBUG command: Finding machine that match name: core-03
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.14r95030
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.14
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO environment: Getting machine: core-03 (virtualbox)
 INFO environment: Uncached load of machine.
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.14r95030
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.14
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO loader: Set "2160614120_machine_core-03" = [["2", #<Proc:0x000001011cf7d0@/Users/pwaters/coreos-vagrant/Vagrantfile:51>]]
DEBUG loader: Populating proc cache for ["2", #<Proc:0x000001011cf7d0@/Users/pwaters/coreos-vagrant/Vagrantfile:51>]
 INFO loader: Loading configuration in order: [:home, :root, "2160614120_machine_core-03"]
ERROR loader: Unknown config sources: ["2160614120_machine_core-01", "2160614120_machine_core-02"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: 2160614120_machine_core-03 (evaluating)
DEBUG provisioner: Provisioner defined: file
DEBUG provisioner: Provisioner defined: shell
DEBUG loader: Configuration loaded successfully, finalizing and returning
 INFO machine: Initializing machine: core-03
 INFO machine: - Provider: VagrantPlugins::ProviderVirtualBox::Provider
 INFO machine: - Box:
 INFO machine: - Data dir: /Users/pwaters/coreos-vagrant/.vagrant/machines/core-03/virtualbox
DEBUG virtualbox: Instantiating the driver for machine ID: nil
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.14r95030
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.14
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO command: With machine: core-01 (#<VagrantPlugins::ProviderVirtualBox::Provider:0x0000010132fdf0 @logger=#<Log4r::Logger:0x0000010132fda0 @fullname="vagrant::provider::virtualbox", @outputters=[], @additive=true, @name="virtualbox", @path="vagrant::provider", @parent=#<Log4r::Logger:0x0000010086c8c8 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000101899a48 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000101899930>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000001018abdd8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0000010086c580 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @machine=#<Vagrant::Machine: core-01 (VagrantPlugins::ProviderVirtualBox::Provider)>, @driver=#<VagrantPlugins::ProviderVirtualBox::Driver::Meta:0x0000010083cdd0 @logger=#<Log4r::Logger:0x000001018bb378 @fullname="vagrant::provider::virtualbox::meta", @outputters=[], @additive=true, @name="meta", @path="vagrant::provider::virtualbox", @parent=#<Log4r::Logger:0x0000010132fda0 @fullname="vagrant::provider::virtualbox", @outputters=[], @additive=true, @name="virtualbox", @path="vagrant::provider", @parent=#<Log4r::Logger:0x0000010086c8c8 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000101899a48 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000101899930>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000001018abdd8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0000010086c580 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @vboxmanage_path="VBoxManage", @uuid=nil, @version="4.3.14", @driver=#<VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3:0x000001010e74f8 @logger=#<Log4r::Logger:0x00000101177008 @fullname="vagrant::provider::virtualbox_4_3", @outputters=[], @additive=true, @name="virtualbox_4_3", @path="vagrant::provider", @parent=#<Log4r::Logger:0x0000010086c8c8 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000101899a48 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000101899930>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000001018abdd8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0000010086c580 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @vboxmanage_path="VBoxManage", @uuid=nil>>, @cap_logger=#<Log4r::Logger:0x000001011d4d98 @fullname="vagrant::capability_host::vagrantplugins::providervirtualbox::provider", @outputters=[], @additive=true, @name="provider", @path="vagrant::capability_host::vagrantplugins::providervirtualbox", @parent=#<Log4r::Logger:0x0000010086c8c8 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000101899a48 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000101899930>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000001018abdd8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0000010086c580 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @cap_host_chain=[[:virtualbox, #<#<Class:0x000001011d5450>:0x0000010121e6f0>]], @cap_args=[#<Vagrant::Machine: core-01 (VagrantPlugins::ProviderVirtualBox::Provider)>], @cap_caps={:docker=>#<Vagrant::Registry:0x000001011d5298 @items={:public_address=>#<Proc:0x00000101941c98@/Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/providers/docker/plugin.rb:54>}, @results_cache={}>, :hyperv=>#<Vagrant::Registry:0x000001011d5180 @items={:public_address=>#<Proc:0x00000101314b68@/Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/providers/hyperv/plugin.rb:25>}, @results_cache={}>, :virtualbox=>#<Vagrant::Registry:0x000001011d5068 @items={:forwarded_ports=>#<Proc:0x00000101972320@/Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/providers/virtualbox/plugin.rb:27>, :nic_mac_addresses=>#<Proc:0x00000101972230@/Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/providers/virtualbox/plugin.rb:32>, :public_address=>#<Proc:0x0000010114f3a0@/Users/pwaters/.vagrant.d/gems/gems/vagrant-share-1.1.2/lib/vagrant-share.rb:39>}, @results_cache={}>}>)
 INFO interface: info: Bringing machine 'core-01' up with 'virtualbox' provider...
Bringing machine 'core-01' up with 'virtualbox' provider...
 INFO command: With machine: core-02 (#<VagrantPlugins::ProviderVirtualBox::Provider:0x000001029733c8 @logger=#<Log4r::Logger:0x00000102973378 @fullname="vagrant::provider::virtualbox", @outputters=[], @additive=true, @name="virtualbox", @path="vagrant::provider", @parent=#<Log4r::Logger:0x0000010086c8c8 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000101899a48 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000101899930>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000001018abdd8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0000010086c580 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @machine=#<Vagrant::Machine: core-02 (VagrantPlugins::ProviderVirtualBox::Provider)>, @driver=#<VagrantPlugins::ProviderVirtualBox::Driver::Meta:0x0000010084c488 @logger=#<Log4r::Logger:0x000001018ca828 @fullname="vagrant::provider::virtualbox::meta", @outputters=[], @additive=true, @name="meta", @path="vagrant::provider::virtualbox", @parent=#<Log4r::Logger:0x00000102973378 @fullname="vagrant::provider::virtualbox", @outputters=[], @additive=true, @name="virtualbox", @path="vagrant::provider", @parent=#<Log4r::Logger:0x0000010086c8c8 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000101899a48 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000101899930>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000001018abdd8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0000010086c580 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @vboxmanage_path="VBoxManage", @uuid=nil, @version="4.3.14", @driver=#<VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3:0x000001010f4dd8 @logger=#<Log4r::Logger:0x00000101186670 @fullname="vagrant::provider::virtualbox_4_3", @outputters=[], @additive=true, @name="virtualbox_4_3", @path="vagrant::provider", @parent=#<Log4r::Logger:0x0000010086c8c8 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000101899a48 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000101899930>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000001018abdd8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0000010086c580 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @vboxmanage_path="VBoxManage", @uuid=nil>>, @cap_logger=#<Log4r::Logger:0x000001011e6930 @fullname="vagrant::capability_host::vagrantplugins::providervirtualbox::provider", @outputters=[], @additive=true, @name="provider", @path="vagrant::capability_host::vagrantplugins::providervirtualbox", @parent=#<Log4r::Logger:0x0000010086c8c8 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000101899a48 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000101899930>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000001018abdd8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0000010086c580 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @cap_host_chain=[[:virtualbox, #<#<Class:0x000001011e73f8>:0x00000101245c50>]], @cap_args=[#<Vagrant::Machine: core-02 (VagrantPlugins::ProviderVirtualBox::Provider)>], @cap_caps={:docker=>#<Vagrant::Registry:0x000001011e70d8 @items={:public_address=>#<Proc:0x00000101941c98@/Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/providers/docker/plugin.rb:54>}, @results_cache={}>, :hyperv=>#<Vagrant::Registry:0x000001011e6f20 @items={:public_address=>#<Proc:0x00000101314b68@/Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/providers/hyperv/plugin.rb:25>}, @results_cache={}>, :virtualbox=>#<Vagrant::Registry:0x000001011e6d68 @items={:forwarded_ports=>#<Proc:0x00000101972320@/Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/providers/virtualbox/plugin.rb:27>, :nic_mac_addresses=>#<Proc:0x00000101972230@/Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/providers/virtualbox/plugin.rb:32>, :public_address=>#<Proc:0x0000010114f3a0@/Users/pwaters/.vagrant.d/gems/gems/vagrant-share-1.1.2/lib/vagrant-share.rb:39>}, @results_cache={}>}>)
 INFO interface: info: Bringing machine 'core-02' up with 'virtualbox' provider...
Bringing machine 'core-02' up with 'virtualbox' provider...
 INFO command: With machine: core-03 (#<VagrantPlugins::ProviderVirtualBox::Provider:0x00000102961ce0 @logger=#<Log4r::Logger:0x00000102961b28 @fullname="vagrant::provider::virtualbox", @outputters=[], @additive=true, @name="virtualbox", @path="vagrant::provider", @parent=#<Log4r::Logger:0x0000010086c8c8 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000101899a48 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000101899930>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000001018abdd8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0000010086c580 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @machine=#<Vagrant::Machine: core-03 (VagrantPlugins::ProviderVirtualBox::Provider)>, @driver=#<VagrantPlugins::ProviderVirtualBox::Driver::Meta:0x0000010086da48 @logger=#<Log4r::Logger:0x00000101841b40 @fullname="vagrant::provider::virtualbox::meta", @outputters=[], @additive=true, @name="meta", @path="vagrant::provider::virtualbox", @parent=#<Log4r::Logger:0x00000102961b28 @fullname="vagrant::provider::virtualbox", @outputters=[], @additive=true, @name="virtualbox", @path="vagrant::provider", @parent=#<Log4r::Logger:0x0000010086c8c8 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000101899a48 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000101899930>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000001018abdd8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0000010086c580 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @vboxmanage_path="VBoxManage", @uuid=nil, @version="4.3.14", @driver=#<VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3:0x00000101105d68 @logger=#<Log4r::Logger:0x0000010118e7d0 @fullname="vagrant::provider::virtualbox_4_3", @outputters=[], @additive=true, @name="virtualbox_4_3", @path="vagrant::provider", @parent=#<Log4r::Logger:0x0000010086c8c8 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000101899a48 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000101899930>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000001018abdd8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0000010086c580 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @vboxmanage_path="VBoxManage", @uuid=nil>>, @cap_logger=#<Log4r::Logger:0x000001011edca8 @fullname="vagrant::capability_host::vagrantplugins::providervirtualbox::provider", @outputters=[], @additive=true, @name="provider", @path="vagrant::capability_host::vagrantplugins::providervirtualbox", @parent=#<Log4r::Logger:0x0000010086c8c8 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000101899a48 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000101899930>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000001018abdd8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0000010086c580 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @cap_host_chain=[[:virtualbox, #<#<Class:0x000001011ee298>:0x00000101254570>]], @cap_args=[#<Vagrant::Machine: core-03 (VagrantPlugins::ProviderVirtualBox::Provider)>], @cap_caps={:docker=>#<Vagrant::Registry:0x000001011ee0e0 @items={:public_address=>#<Proc:0x00000101941c98@/Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/providers/docker/plugin.rb:54>}, @results_cache={}>, :hyperv=>#<Vagrant::Registry:0x000001011edfa0 @items={:public_address=>#<Proc:0x00000101314b68@/Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/providers/hyperv/plugin.rb:25>}, @results_cache={}>, :virtualbox=>#<Vagrant::Registry:0x000001011edeb0 @items={:forwarded_ports=>#<Proc:0x00000101972320@/Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/providers/virtualbox/plugin.rb:27>, :nic_mac_addresses=>#<Proc:0x00000101972230@/Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/plugins/providers/virtualbox/plugin.rb:32>, :public_address=>#<Proc:0x0000010114f3a0@/Users/pwaters/.vagrant.d/gems/gems/vagrant-share-1.1.2/lib/vagrant-share.rb:39>}, @results_cache={}>}>)
 INFO interface: info: Bringing machine 'core-03' up with 'virtualbox' provider...
Bringing machine 'core-03' up with 'virtualbox' provider...
 INFO batch_action: Enabling parallelization by default.
 INFO batch_action: Disabling parallelization because provider doesn't support it: virtualbox
 INFO batch_action: Batch action will parallelize: false
 INFO batch_action: Starting action: #<Vagrant::Machine:0x00000101474508> up {:destroy_on_error=>true, :parallel=>true, :provision_ignore_sentinel=>false, :provision_types=>nil}
 INFO machine: Calling action: up on provider VirtualBox (new VM)
DEBUG environment: Attempting to acquire process-lock: machine-action-88fe6a68e867f5d1bf39700da0c492fd
DEBUG environment: Attempting to acquire process-lock: dotlock
 INFO environment: Acquired process lock: dotlock
 INFO environment: Released process lock: dotlock
 INFO environment: Acquired process lock: machine-action-88fe6a68e867f5d1bf39700da0c492fd
 INFO host: Autodetecting host type for [#<Vagrant::Environment: /Users/pwaters/coreos-vagrant>]
DEBUG host: Trying: arch
DEBUG host: Trying: darwin
 INFO host: Detected: darwin!
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x0000010137eae0>
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::CheckVirtualbox:0x000001014a7278>
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.14r95030
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.14
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "list", "hostonlyifs"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Name: vboxnet0
GUID: 786f6276-656e-4074-8000-0a0027000000
DHCP: Disabled
IPAddress: 192.168.30.1
NetworkMask: 255.255.255.0
IPV6Address:
IPV6NetworkMaskPrefixLength: 0
HardwareAddress: 0a:00:27:00:00:00
MediumType: Ethernet
Status: Down
VBoxNetworkName: HostInterfaceNetworking-vboxnet0

Name: vboxnet1
GUID: 786f6276-656e-4174-8000-0a0027000001
DHCP: Disabled
IPAddress: 172.17.8.1
NetworkMask: 255.255.255.0
IPV6Address:
IPV6NetworkMaskPrefixLength: 0
HardwareAddress: 0a:00:27:00:00:01
MediumType: Ethernet
Status: Up
VBoxNetworkName: HostInterfaceNetworking-vboxnet1

Name: vboxnet2
GUID: 786f6276-656e-4274-8000-0a0027000002
DHCP: Disabled
IPAddress: 192.168.12.1
NetworkMask: 255.255.255.0
IPV6Address:
IPV6NetworkMaskPrefixLength: 0
HardwareAddress: 0a:00:27:00:00:02
MediumType: Ethernet
Status: Down
VBoxNetworkName: HostInterfaceNetworking-vboxnet2

DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x000001014a7250>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x000001019a12d8>
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::Created:0x000001019b07b0>
 INFO machine: New machine ID: nil
DEBUG virtualbox: Instantiating the driver for machine ID: nil
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Command not in installer, not touching env vars.
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.14r95030
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.14
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::Created:0x000001019b07b0>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Warden:0x00000102921e60>
 INFO warden: Calling IN action: #<Proc:0x0000010131e8e8@/Applications/Vagrant/embedded/gems/gems/vagrant-1.6.5/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::HandleBox:0x00000102921960>
 INFO interface: output: Box 'coreos-stable' could not be found. Attempting to find and install...
 INFO interface: output: ==> core-01: Box 'coreos-stable' could not be found. Attempting to find and install...
==> core-01: Box 'coreos-stable' could not be found. Attempting to find and install...
 INFO interface: detail: Box Provider: virtualbox
 INFO interface: detail: core-01: Box Provider: virtualbox
 core-01: Box Provider: virtualbox
 INFO interface: detail: Box Version: >= 308.0.1
 INFO interface: detail: core-01: Box Version: >= 308.0.1
 core-01: Box Version: >= 308.0.1
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x00000101384e40>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::BoxAdd:0x0000010145f298>
 INFO environment: Running hook: authenticate_box_url
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 3 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x00000101486c08>
 INFO warden: Calling IN action: #<VagrantPlugins::Login::ActionAuthenticateBox:0x000001049dbcc8>
 INFO warden: Calling OUT action: #<VagrantPlugins::Login::ActionAuthenticateBox:0x000001049dbcc8>
 INFO box_add: Downloading box: http://stable.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json => /Users/pwaters/.vagrant.d/tmp/box596a0c329ccaf65349f3907c3b5449cf7eeeab16
 INFO downloader: HEAD: http://stable.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json
 INFO subprocess: Starting process: ["/Applications/Vagrant/bin/../embedded/bin/curl", "-I", "-q", "--fail", "--location", "--max-redirs", "10", "--user-agent", "Vagrant/1.6.5", "--continue-at", "-", "-H", "Accept: application/json", "http://stable.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json"]
 INFO subprocess: Command in the installer. Specifying DYLD_LIBRARY_PATH...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stderr: % Total % Received % Xferd Average Speed Time Time Time Current
 Dload Upload Total Spent Left Speed
 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:02 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:03 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:04 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:05 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:06 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:07 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:08 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:09 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:10 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:11 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:12 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:13 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:14 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:15 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:16 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:17 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:18 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:19 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:20 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:21 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:22 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:23 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:24 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:25 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:26 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:27 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:28 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:29 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:30 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:31 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:32 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:33 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:34 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:35 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:36 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:37 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:38 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:39 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:40 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:41 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:42 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:43 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:44 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:45 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:46 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:47 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:48 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:49 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:50 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:51 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:52 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:53 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:54 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:55 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:56 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:57 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:58 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:00:59 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:01:00 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:01:01 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:01:02 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:01:03 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:01:04 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:01:05 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:
DEBUG subprocess: stderr: 01:06 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:01:07 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:01:08 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:01:09 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:01:10 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:01:11 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:01:12 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:01:13 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:01:14 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:01:15 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:01:16 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:01:17 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:01:18 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:01:19 --:--:-- 0
 0 0 0 0 0 0 0 0 --:--:-- 0:01:20 --:--:-- 0

@crawford
Copy link
Contributor Author


Comment by pwaterz


It hasn't errored out yet, but it looks like it can't get to the url through curl

@crawford
Copy link
Contributor Author


Comment by pwaterz


Odd, it just started working

@crawford
Copy link
Contributor Author


Comment by jonboulle


Heisenbug..

@crawford
Copy link
Contributor Author


Comment by pwaterz


It hangs for a longtime on trying to do the curl, then for some reason it worked this time....blasphemy

@crawford
Copy link
Contributor Author


Comment by bhundven


config.rb:

--- config.rb.sample    2014-10-14 23:22:54.604762294 -0700
+++ config.rb   2014-10-14 23:31:14.880770405 -0700
@@ -24,10 +24,10 @@
 # after the equals sign..

 # Size of the CoreOS cluster created by Vagrant
-#$num_instances=1
+$num_instances=1

 # Official CoreOS channel from which updates should be downloaded
-#$update_channel='alpha'
+$update_channel='alpha'

 # Log the serial consoles of CoreOS VMs to log/
 # Enable by setting value to true, disable with false

user-data is just copied from user-data.sample. No changes.

output from vagrant up --debug:

vagrant up --debug
INFO global: Vagrant version: 1.6.5

 INFO global: Ruby version: 2.1.3
 INFO global: RubyGems version: 2.2.2
 INFO global: VAGRANT_INTERNAL_BUNDLERIZED="1"
 INFO global: VAGRANT_LOG="debug"
 INFO global: Plugins:
 INFO global: - bundler = 1.7.2
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/kernel_v1/plugin.rb
 INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/slackware/plugin.rb
 INFO manager: Registered plugin: Slackware host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/windows/plugin.rb
 INFO manager: Registered plugin: Windows host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/linux/plugin.rb
 INFO manager: Registered plugin: Linux host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/null/plugin.rb
 INFO manager: Registered plugin: null host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/bsd/plugin.rb
 INFO manager: Registered plugin: BSD host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/opensuse/plugin.rb
 INFO manager: Registered plugin: OpenSUSE host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/darwin/plugin.rb
 INFO manager: Registered plugin: Mac OS X host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/redhat/plugin.rb
 INFO manager: Registered plugin: Red Hat host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/gentoo/plugin.rb
 INFO manager: Registered plugin: Gentoo host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/arch/plugin.rb
 INFO manager: Registered plugin: Arch host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/freebsd/plugin.rb
 INFO manager: Registered plugin: FreeBSD host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/communicators/ssh/plugin.rb
 INFO manager: Registered plugin: ssh communicator
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/communicators/winrm/plugin.rb
 INFO manager: Registered plugin: winrm communicator
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/providers/virtualbox/plugin.rb
 INFO manager: Registered plugin: VirtualBox provider
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/providers/hyperv/plugin.rb
 INFO manager: Registered plugin: Hyper-V provider
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/providers/docker/plugin.rb
 INFO manager: Registered plugin: docker-provider
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/cfengine/plugin.rb
 INFO manager: Registered plugin: CFEngine Provisioner
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/chef/plugin.rb
 INFO manager: Registered plugin: chef
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/shell/plugin.rb
 INFO manager: Registered plugin: shell
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/file/plugin.rb
 INFO manager: Registered plugin: file
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/ansible/plugin.rb
 INFO manager: Registered plugin: ansible
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/salt/plugin.rb
 INFO manager: Registered plugin: salt
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/puppet/plugin.rb
 INFO manager: Registered plugin: puppet
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/docker/plugin.rb
 INFO manager: Registered plugin: docker
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/kernel_v2/plugin.rb
 INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/synced_folders/smb/plugin.rb
 INFO manager: Registered plugin: SMB synced folders
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/synced_folders/rsync/plugin.rb
 INFO manager: Registered plugin: RSync synced folders
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/synced_folders/nfs/plugin.rb
 INFO manager: Registered plugin: NFS synced folders
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/windows/plugin.rb
 INFO manager: Registered plugin: Windows guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/debian/plugin.rb
 INFO manager: Registered plugin: Debian guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/smartos/plugin.rb
 INFO manager: Registered plugin: SmartOS guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/linux/plugin.rb
 INFO manager: Registered plugin: Linux guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/omnios/plugin.rb
 INFO manager: Registered plugin: OmniOS guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/pld/plugin.rb
 INFO manager: Registered plugin: PLD Linux guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/solaris/plugin.rb
 INFO manager: Registered plugin: Solaris guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/tinycore/plugin.rb
 INFO manager: Registered plugin: TinyCore Linux guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/esxi/plugin.rb
 INFO manager: Registered plugin: ESXi guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/fedora/plugin.rb
 INFO manager: Registered plugin: Fedora guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/solaris11/plugin.rb
 INFO manager: Registered plugin: Solaris 11 guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/coreos/plugin.rb
 INFO manager: Registered plugin: CoreOS guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/darwin/plugin.rb
 INFO manager: Registered plugin: Darwin guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/redhat/plugin.rb
 INFO manager: Registered plugin: RedHat guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/gentoo/plugin.rb
 INFO manager: Registered plugin: Gentoo guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/suse/plugin.rb
 INFO manager: Registered plugin: SUSE guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/ubuntu/plugin.rb
 INFO manager: Registered plugin: Ubuntu guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/funtoo/plugin.rb
 INFO manager: Registered plugin: Funtoo guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/arch/plugin.rb
 INFO manager: Registered plugin: Arch guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/nixos/plugin.rb
 INFO manager: Registered plugin: NixOS guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/netbsd/plugin.rb
 INFO manager: Registered plugin: NetBSD guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/mint/plugin.rb
 INFO manager: Registered plugin: Mint guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/openbsd/plugin.rb
 INFO manager: Registered plugin: OpenBSD guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/freebsd/plugin.rb
 INFO manager: Registered plugin: FreeBSD guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/provision/plugin.rb
 INFO manager: Registered plugin: provision command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/reload/plugin.rb
 INFO manager: Registered plugin: reload command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/ssh_config/plugin.rb
 INFO manager: Registered plugin: ssh-config command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/resume/plugin.rb
 INFO manager: Registered plugin: resume command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/status/plugin.rb
 INFO manager: Registered plugin: status command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/rdp/plugin.rb
 INFO manager: Registered plugin: rdp command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/up/plugin.rb
 INFO manager: Registered plugin: up command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/help/plugin.rb
 INFO manager: Registered plugin: help command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/init/plugin.rb
 INFO manager: Registered plugin: init command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/plugin/plugin.rb
 INFO manager: Registered plugin: plugin command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/list-commands/plugin.rb
 INFO manager: Registered plugin: list-commands command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/box/plugin.rb
 INFO manager: Registered plugin: box command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/package/plugin.rb
 INFO manager: Registered plugin: package command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/suspend/plugin.rb
 INFO manager: Registered plugin: suspend command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/ssh/plugin.rb
 INFO manager: Registered plugin: ssh command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/global-status/plugin.rb
 INFO manager: Registered plugin: global-status command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/halt/plugin.rb
 INFO manager: Registered plugin: halt command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/version/plugin.rb
 INFO manager: Registered plugin: version command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/destroy/plugin.rb
 INFO manager: Registered plugin: destroy command
 INFO global: Loading plugins!
 INFO vagrant: `vagrant` invoked: ["up", "--debug"]
DEBUG vagrant: Creating Vagrant environment
 INFO environment: Environment initialized (#<Vagrant::Environment:0x00000002ae3538>)
 INFO environment: - cwd: /home/bryan/coreos/coreos-vagrant
 INFO environment: Home path: /home/bryan/.vagrant.d
 INFO environment: Local data path: /home/bryan/coreos/coreos-vagrant/.vagrant
DEBUG environment: Creating: /home/bryan/coreos/coreos-vagrant/.vagrant
 INFO environment: Running hook: environment_plugins_loaded
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x00000002bf1498>
 INFO environment: Running hook: environment_load
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x00000002cbee48>
 INFO cli: CLI: [] "up" []
DEBUG cli: Invoking command class: VagrantPlugins::CommandUp::Command []
DEBUG command: 'Up' each target VM...
 INFO loader: Set :root = #<Pathname:/home/bryan/coreos/coreos-vagrant/Vagrantfile>
DEBUG loader: Populating proc cache for #<Pathname:/home/bryan/coreos/coreos-vagrant/Vagrantfile>
DEBUG loader: Load procs for pathname: /home/bryan/coreos/coreos-vagrant/Vagrantfile
 INFO root: Version requirements from Vagrantfile: [">= 1.6.0"]
 INFO root: - Version requirements satisfied!
 INFO loader: Loading configuration in order: [:home, :root]
DEBUG loader: Loading from: root (evaluating)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG command: Getting target VMs for command. Arguments:
DEBUG command: -- names: ["core-01"]
DEBUG command: -- options: {:provider=>nil}
DEBUG command: Finding machine that match name: core-01
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.18r96516
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.18
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO environment: Getting machine: core-01 (virtualbox)
 INFO environment: Uncached load of machine.
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.18r96516
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.18
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO loader: Set "24284760_machine_core-01" = [["2", #<Proc:0x00000002cc1d78@/home/bryan/coreos/coreos-vagrant/Vagrantfile:51>]]
DEBUG loader: Populating proc cache for ["2", #<Proc:0x00000002cc1d78@/home/bryan/coreos/coreos-vagrant/Vagrantfile:51>]
 INFO loader: Loading configuration in order: [:home, :root, "24284760_machine_core-01"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: 24284760_machine_core-01 (evaluating)
DEBUG provisioner: Provisioner defined: file
DEBUG provisioner: Provisioner defined: shell
DEBUG loader: Configuration loaded successfully, finalizing and returning
 INFO box_collection: Box not found: coreos-alpha (virtualbox)
 INFO machine: Initializing machine: core-01
 INFO machine: - Provider: VagrantPlugins::ProviderVirtualBox::Provider
 INFO machine: - Box: 
 INFO machine: - Data dir: /home/bryan/coreos/coreos-vagrant/.vagrant/machines/core-01/virtualbox
DEBUG virtualbox: Instantiating the driver for machine ID: nil
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.18r96516
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.18
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO command: With machine: core-01 (#<VagrantPlugins::ProviderVirtualBox::Provider:0x00000002cc3df8 @logger=#<Log4r::Logger:0x00000002cc3da8 @fullname="vagrant::provider::virtualbox", @outputters=[], @additive=true, @name="virtualbox", @path="vagrant::provider", @parent=#<Log4r::Logger:0x00000001cb8f80 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000001c580b8 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000001c4fee0>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x00000001c17db0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00000001cb8e18 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @machine=#<Vagrant::Machine: core-01 (VagrantPlugins::ProviderVirtualBox::Provider)>, @driver=#<VagrantPlugins::ProviderVirtualBox::Driver::Meta:0x00000002c4fc78 @logger=#<Log4r::Logger:0x00000002bf9080 @fullname="vagrant::provider::virtualbox::meta", @outputters=[], @additive=true, @name="meta", @path="vagrant::provider::virtualbox", @parent=#<Log4r::Logger:0x00000002cc3da8 @fullname="vagrant::provider::virtualbox", @outputters=[], @additive=true, @name="virtualbox", @path="vagrant::provider", @parent=#<Log4r::Logger:0x00000001cb8f80 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000001c580b8 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000001c4fee0>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x00000001c17db0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00000001cb8e18 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @vboxmanage_path="VBoxManage", @uuid=nil, @version="4.3.18", @driver=#<VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3:0x00000002a22450 @logger=#<Log4r::Logger:0x000000029dfc40 @fullname="vagrant::provider::virtualbox_4_3", @outputters=[], @additive=true, @name="virtualbox_4_3", @path="vagrant::provider", @parent=#<Log4r::Logger:0x00000001cb8f80 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000001c580b8 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000001c4fee0>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x00000001c17db0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00000001cb8e18 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @vboxmanage_path="VBoxManage", @uuid=nil>>, @cap_logger=#<Log4r::Logger:0x0000000297bee8 @fullname="vagrant::capability_host::vagrantplugins::providervirtualbox::provider", @outputters=[], @additive=true, @name="provider", @path="vagrant::capability_host::vagrantplugins::providervirtualbox", @parent=#<Log4r::Logger:0x00000001cb8f80 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000001c580b8 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x00000001c4fee0>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x00000001c17db0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00000001cb8e18 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @cap_host_chain=[[:virtualbox, #<#<Class:0x0000000298c400>:0x00000002964658>]], @cap_args=[#<Vagrant::Machine: core-01 (VagrantPlugins::ProviderVirtualBox::Provider)>], @cap_caps={:virtualbox=>#<Vagrant::Registry:0x0000000298c270 @items={:forwarded_ports=>#<Proc:0x000000022bd8b8@/usr/share/vagrant/plugins/providers/virtualbox/plugin.rb:27>, :nic_mac_addresses=>#<Proc:0x000000022bd660@/usr/share/vagrant/plugins/providers/virtualbox/plugin.rb:32>}, @results_cache={}>, :hyperv=>#<Vagrant::Registry:0x0000000298c1d0 @items={:public_address=>#<Proc:0x00000002b05840@/usr/share/vagrant/plugins/providers/hyperv/plugin.rb:25>}, @results_cache={}>, :docker=>#<Vagrant::Registry:0x0000000298c0e0 @items={:public_address=>#<Proc:0x000000022a19b0@/usr/share/vagrant/plugins/providers/docker/plugin.rb:54>}, @results_cache={}>}>)
 INFO interface: info: Bringing machine 'core-01' up with 'virtualbox' provider...
Bringing machine 'core-01' up with 'virtualbox' provider...
 INFO batch_action: Enabling parallelization by default.
 INFO batch_action: Disabling parallelization because provider doesn't support it: virtualbox
 INFO batch_action: Batch action will parallelize: false
 INFO batch_action: Starting action: #<Vagrant::Machine:0x00000002dc6110> up {:destroy_on_error=>true, :parallel=>true, :provision_ignore_sentinel=>false, :provision_types=>nil}
 INFO machine: Calling action: up on provider VirtualBox (new VM)
DEBUG environment: Attempting to acquire process-lock: machine-action-2a14b7be89a936e9e3a8abfccd874b59
DEBUG environment: Attempting to acquire process-lock: dotlock
 INFO environment: Acquired process lock: dotlock
 INFO environment: Released process lock: dotlock
 INFO environment: Acquired process lock: machine-action-2a14b7be89a936e9e3a8abfccd874b59
 INFO host: Autodetecting host type for [#<Vagrant::Environment: /home/bryan/coreos/coreos-vagrant>]
DEBUG host: Trying: slackware
DEBUG host: Trying: opensuse
DEBUG host: Trying: darwin
DEBUG host: Trying: redhat
DEBUG host: Trying: gentoo
DEBUG host: Trying: arch
DEBUG host: Trying: freebsd
DEBUG host: Trying: windows
DEBUG host: Trying: linux
 INFO host: Detected: linux!
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x00000001c106c8>
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::CheckVirtualbox:0x00000002c713a0>
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.18r96516
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.18
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "list", "hostonlyifs"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x00000002c71350>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x00000002b52618>
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::Created:0x00000002b47970>
 INFO machine: New machine ID: nil
DEBUG virtualbox: Instantiating the driver for machine ID: nil
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.18r96516
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.18
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::Created:0x00000002b47970>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Warden:0x000000022df670>
 INFO warden: Calling IN action: #<Proc:0x00000002220428@/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::HandleBox:0x000000022df558>
 INFO interface: output: Box 'coreos-alpha' could not be found. Attempting to find and install...
 INFO interface: output: ==> core-01: Box 'coreos-alpha' could not be found. Attempting to find and install...
==> core-01: Box 'coreos-alpha' could not be found. Attempting to find and install...
 INFO interface: detail: Box Provider: virtualbox
 INFO interface: detail: core-01: Box Provider: virtualbox
 core-01: Box Provider: virtualbox
 INFO interface: detail: Box Version: >= 308.0.1
 INFO interface: detail: core-01: Box Version: >= 308.0.1
 core-01: Box Version: >= 308.0.1
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x00000001ccbb80>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::BoxAdd:0x00000001a197c0>
 INFO environment: Running hook: authenticate_box_url
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x00000002d0e088>
 INFO box_add: Downloading box: http://alpha.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json => /home/bryan/.vagrant.d/tmp/boxd78b8988cafc933b442196087298c839b6638361
 INFO downloader: HEAD: http://alpha.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json
 INFO subprocess: Starting process: ["/usr/bin/curl", "-I", "-q", "--fail", "--location", "--max-redirs", "10", "--user-agent", "Vagrant/1.6.5\n", "--continue-at", "-", "-H", "Accept: application/json", "http://alpha.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stderr: 
DEBUG subprocess: stderr: 
DEBUG subprocess: stderr: %
DEBUG subprocess: stderr: 
DEBUG subprocess: stderr: T
DEBUG subprocess: stderr: o
DEBUG subprocess: stderr: t
DEBUG subprocess: stderr: a
DEBUG subprocess: stderr: l
DEBUG subprocess: stderr: 
DEBUG subprocess: stderr: 
DEBUG subprocess: stderr: 
DEBUG subprocess: stderr: 
DEBUG subprocess: stderr: %
DEBUG subprocess: stderr: 
DEBUG subprocess: stderr: R
DEBUG subprocess: stderr: e
DEBUG subprocess: stderr: c
DEBUG subprocess: stderr: e
DEBUG subprocess: stderr: i
DEBUG subprocess: stderr: v
DEBUG subprocess: stderr: e
DEBUG subprocess: stderr: d
DEBUG subprocess: stderr: 
DEBUG subprocess: stderr: %
DEBUG subprocess: stderr: 
DEBUG subprocess: stderr: X
DEBUG subprocess: stderr: f
DEBUG subprocess: stderr: e
DEBUG subprocess: stderr: r
DEBUG subprocess: stderr: d
DEBUG subprocess: stderr: 
DEBUG subprocess: stderr: 
DEBUG subprocess: stderr: A
DEBUG subprocess: stderr: v
DEBUG subprocess: stderr: e
DEBUG subprocess: stderr: r
DEBUG subprocess: stderr: a
DEBUG subprocess: stderr: g
DEBUG subprocess: stderr: e
DEBUG subprocess: stderr: 
DEBUG subprocess: stderr: S
DEBUG subprocess: stderr: p
DEBUG subprocess: stderr: e
DEBUG subprocess: stderr: e
DEBUG subprocess: stderr: d
DEBUG subprocess: stderr: 
DEBUG subprocess: stderr: 
DEBUG subprocess: stderr: 
DEBUG subprocess: stderr: T
DEBUG subprocess: stderr: i
DEBUG subprocess: stderr: m
DEBUG subprocess: stderr: e
DEBUG subprocess: stderr: 
DEBUG subprocess: stderr: 
DEBUG subprocess: stderr: 
DEBUG subprocess: stderr: 
DEBUG subprocess: stderr: T
DEBUG subprocess: stderr: i
DEBUG subprocess: stderr: me Time Current
 Dload Upload Total Spent Left Speed
 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
DEBUG subprocess: stderr: curl: (22) The requested URL returned error: 404 Not Found
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 22
 WARN downloader: Downloader exit code: 22
ERROR warden: Error occurred: You specified a box version constraint with a direct box file
path. Box version constraints only work with boxes from Vagrant
Cloud or a custom box host. Please remove the version constraint
and try again.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: You specified a box version constraint with a direct box file
path. Box version constraints only work with boxes from Vagrant
Cloud or a custom box host. Please remove the version constraint
and try again.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: You specified a box version constraint with a direct box file
path. Box version constraints only work with boxes from Vagrant
Cloud or a custom box host. Please remove the version constraint
and try again.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: You specified a box version constraint with a direct box file
path. Box version constraints only work with boxes from Vagrant
Cloud or a custom box host. Please remove the version constraint
and try again.
 INFO warden: Beginning recovery process...
 INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x00000002c71350>
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO environment: Released process lock: machine-action-2a14b7be89a936e9e3a8abfccd874b59
 INFO environment: Running hook: environment_unload
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x00000002d6c598>
ERROR vagrant: Vagrant experienced an error! Details:
ERROR vagrant: #<Vagrant::Errors::BoxAddDirectVersion: You specified a box version constraint with a direct box file
path. Box version constraints only work with boxes from Vagrant
Cloud or a custom box host. Please remove the version constraint
and try again.>
ERROR vagrant: You specified a box version constraint with a direct box file
path. Box version constraints only work with boxes from Vagrant
Cloud or a custom box host. Please remove the version constraint
and try again.
ERROR vagrant: /usr/lib/ruby/vendor_ruby/vagrant/action/builtin/box_add.rb:124:in `add_direct'
/usr/lib/ruby/vendor_ruby/vagrant/action/builtin/box_add.rb:106:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:34:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/builder.rb:116:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/runner.rb:66:in `block in run'
/usr/lib/ruby/vendor_ruby/vagrant/util/busy.rb:19:in `busy'
/usr/lib/ruby/vendor_ruby/vagrant/action/runner.rb:66:in `run'
/usr/lib/ruby/vendor_ruby/vagrant/action/builtin/handle_box.rb:79:in `handle_box'
/usr/lib/ruby/vendor_ruby/vagrant/action/builtin/handle_box.rb:42:in `block in call'
/usr/lib/ruby/vendor_ruby/vagrant/action/builtin/handle_box.rb:36:in `synchronize'
/usr/lib/ruby/vendor_ruby/vagrant/action/builtin/handle_box.rb:36:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:34:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:95:in `block in finalize_action'
/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:34:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:34:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/builder.rb:116:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/runner.rb:66:in `block in run'
/usr/lib/ruby/vendor_ruby/vagrant/util/busy.rb:19:in `busy'
/usr/lib/ruby/vendor_ruby/vagrant/action/runner.rb:66:in `run'
/usr/lib/ruby/vendor_ruby/vagrant/action/builtin/call.rb:53:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:34:in `call'
/usr/share/vagrant/plugins/providers/virtualbox/action/check_virtualbox.rb:17:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:34:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/builder.rb:116:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/runner.rb:66:in `block in run'
/usr/lib/ruby/vendor_ruby/vagrant/util/busy.rb:19:in `busy'
/usr/lib/ruby/vendor_ruby/vagrant/action/runner.rb:66:in `run'
/usr/lib/ruby/vendor_ruby/vagrant/machine.rb:196:in `action_raw'
/usr/lib/ruby/vendor_ruby/vagrant/machine.rb:173:in `block in action'
/usr/lib/ruby/vendor_ruby/vagrant/environment.rb:440:in `lock'
/usr/lib/ruby/vendor_ruby/vagrant/machine.rb:161:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/machine.rb:161:in `action'
/usr/lib/ruby/vendor_ruby/vagrant/batch_action.rb:82:in `block (2 levels) in run'
 INFO interface: error: You specified a box version constraint with a direct box file
path. Box version constraints only work with boxes from Vagrant
Cloud or a custom box host. Please remove the version constraint
and try again.
You specified a box version constraint with a direct box file
path. Box version constraints only work with boxes from Vagrant
Cloud or a custom box host. Please remove the version constraint
and try again.
 INFO interface: Machine: error-exit ["Vagrant::Errors::BoxAddDirectVersion", "You specified a box version constraint with a direct box file\npath. Box version constraints only work with boxes from Vagrant\nCloud or a custom box host. Please remove the version constraint\nand try again."]

output from curl http://alpha.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json:

$ curl http://alpha.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json
{
 "name": "coreos-alpha",
 "description": "CoreOS alpha",
 "versions": [{
 "version": "459.0.0",
 "providers": [{
 "name": "virtualbox",
 "url": "http://alpha.release.core-os.net/amd64-usr/459.0.0/coreos_production_vagrant.box",
 "checksum_type": "sha256",
 "checksum": "2cedab99396d488c4b3cf196e33db2502dccb60f2978bcfb2c3ab4638fa5609c"
 }]
 }]
}

No heisenbug here. If I comment the config.vm.box_version line, then I get:

$ vagrant up --debug
INFO global: Vagrant version: 1.6.5

 INFO global: Ruby version: 2.1.3
 INFO global: RubyGems version: 2.2.2
 INFO global: VAGRANT_INTERNAL_BUNDLERIZED="1"
 INFO global: VAGRANT_LOG="debug"
 INFO global: Plugins:
 INFO global: - bundler = 1.7.2
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/kernel_v1/plugin.rb
 INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/slackware/plugin.rb
 INFO manager: Registered plugin: Slackware host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/windows/plugin.rb
 INFO manager: Registered plugin: Windows host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/linux/plugin.rb
 INFO manager: Registered plugin: Linux host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/null/plugin.rb
 INFO manager: Registered plugin: null host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/bsd/plugin.rb
 INFO manager: Registered plugin: BSD host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/opensuse/plugin.rb
 INFO manager: Registered plugin: OpenSUSE host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/darwin/plugin.rb
 INFO manager: Registered plugin: Mac OS X host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/redhat/plugin.rb
 INFO manager: Registered plugin: Red Hat host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/gentoo/plugin.rb
 INFO manager: Registered plugin: Gentoo host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/arch/plugin.rb
 INFO manager: Registered plugin: Arch host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/freebsd/plugin.rb
 INFO manager: Registered plugin: FreeBSD host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/communicators/ssh/plugin.rb
 INFO manager: Registered plugin: ssh communicator
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/communicators/winrm/plugin.rb
 INFO manager: Registered plugin: winrm communicator
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/providers/virtualbox/plugin.rb
 INFO manager: Registered plugin: VirtualBox provider
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/providers/hyperv/plugin.rb
 INFO manager: Registered plugin: Hyper-V provider
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/providers/docker/plugin.rb
 INFO manager: Registered plugin: docker-provider
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/cfengine/plugin.rb
 INFO manager: Registered plugin: CFEngine Provisioner
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/chef/plugin.rb
 INFO manager: Registered plugin: chef
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/shell/plugin.rb
 INFO manager: Registered plugin: shell
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/file/plugin.rb
 INFO manager: Registered plugin: file
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/ansible/plugin.rb
 INFO manager: Registered plugin: ansible
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/salt/plugin.rb
 INFO manager: Registered plugin: salt
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/puppet/plugin.rb
 INFO manager: Registered plugin: puppet
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/docker/plugin.rb
 INFO manager: Registered plugin: docker
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/kernel_v2/plugin.rb
 INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/synced_folders/smb/plugin.rb
 INFO manager: Registered plugin: SMB synced folders
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/synced_folders/rsync/plugin.rb
 INFO manager: Registered plugin: RSync synced folders
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/synced_folders/nfs/plugin.rb
 INFO manager: Registered plugin: NFS synced folders
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/windows/plugin.rb
 INFO manager: Registered plugin: Windows guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/debian/plugin.rb
 INFO manager: Registered plugin: Debian guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/smartos/plugin.rb
 INFO manager: Registered plugin: SmartOS guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/linux/plugin.rb
 INFO manager: Registered plugin: Linux guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/omnios/plugin.rb
 INFO manager: Registered plugin: OmniOS guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/pld/plugin.rb
 INFO manager: Registered plugin: PLD Linux guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/solaris/plugin.rb
 INFO manager: Registered plugin: Solaris guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/tinycore/plugin.rb
 INFO manager: Registered plugin: TinyCore Linux guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/esxi/plugin.rb
 INFO manager: Registered plugin: ESXi guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/fedora/plugin.rb
 INFO manager: Registered plugin: Fedora guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/solaris11/plugin.rb
 INFO manager: Registered plugin: Solaris 11 guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/coreos/plugin.rb
 INFO manager: Registered plugin: CoreOS guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/darwin/plugin.rb
 INFO manager: Registered plugin: Darwin guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/redhat/plugin.rb
 INFO manager: Registered plugin: RedHat guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/gentoo/plugin.rb
 INFO manager: Registered plugin: Gentoo guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/suse/plugin.rb
 INFO manager: Registered plugin: SUSE guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/ubuntu/plugin.rb
 INFO manager: Registered plugin: Ubuntu guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/funtoo/plugin.rb
 INFO manager: Registered plugin: Funtoo guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/arch/plugin.rb
 INFO manager: Registered plugin: Arch guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/nixos/plugin.rb
 INFO manager: Registered plugin: NixOS guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/netbsd/plugin.rb
 INFO manager: Registered plugin: NetBSD guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/mint/plugin.rb
 INFO manager: Registered plugin: Mint guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/openbsd/plugin.rb
 INFO manager: Registered plugin: OpenBSD guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/freebsd/plugin.rb
 INFO manager: Registered plugin: FreeBSD guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/provision/plugin.rb
 INFO manager: Registered plugin: provision command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/reload/plugin.rb
 INFO manager: Registered plugin: reload command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/ssh_config/plugin.rb
 INFO manager: Registered plugin: ssh-config command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/resume/plugin.rb
 INFO manager: Registered plugin: resume command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/status/plugin.rb
 INFO manager: Registered plugin: status command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/rdp/plugin.rb
 INFO manager: Registered plugin: rdp command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/up/plugin.rb
 INFO manager: Registered plugin: up command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/help/plugin.rb
 INFO manager: Registered plugin: help command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/init/plugin.rb
 INFO manager: Registered plugin: init command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/plugin/plugin.rb
 INFO manager: Registered plugin: plugin command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/list-commands/plugin.rb
 INFO manager: Registered plugin: list-commands command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/box/plugin.rb
 INFO manager: Registered plugin: box command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/package/plugin.rb
 INFO manager: Registered plugin: package command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/suspend/plugin.rb
 INFO manager: Registered plugin: suspend command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/ssh/plugin.rb
 INFO manager: Registered plugin: ssh command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/global-status/plugin.rb
 INFO manager: Registered plugin: global-status command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/halt/plugin.rb
 INFO manager: Registered plugin: halt command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/version/plugin.rb
 INFO manager: Registered plugin: version command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/destroy/plugin.rb
 INFO manager: Registered plugin: destroy command
 INFO global: Loading plugins!
 INFO vagrant: `vagrant` invoked: ["up", "--debug"]
DEBUG vagrant: Creating Vagrant environment
 INFO environment: Environment initialized (#<Vagrant::Environment:0x0000000279f430>)
 INFO environment: - cwd: /home/bryan/coreos/coreos-vagrant
 INFO environment: Home path: /home/bryan/.vagrant.d
 INFO environment: Local data path: /home/bryan/coreos/coreos-vagrant/.vagrant
DEBUG environment: Creating: /home/bryan/coreos/coreos-vagrant/.vagrant
 INFO environment: Running hook: environment_plugins_loaded
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x000000028ad2f0>
 INFO environment: Running hook: environment_load
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x0000000297acf0>
 INFO cli: CLI: [] "up" []
DEBUG cli: Invoking command class: VagrantPlugins::CommandUp::Command []
DEBUG command: 'Up' each target VM...
 INFO loader: Set :root = #<Pathname:/home/bryan/coreos/coreos-vagrant/Vagrantfile>
DEBUG loader: Populating proc cache for #<Pathname:/home/bryan/coreos/coreos-vagrant/Vagrantfile>
DEBUG loader: Load procs for pathname: /home/bryan/coreos/coreos-vagrant/Vagrantfile
 INFO root: Version requirements from Vagrantfile: [">= 1.6.0"]
 INFO root: - Version requirements satisfied!
 INFO loader: Loading configuration in order: [:home, :root]
DEBUG loader: Loading from: root (evaluating)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG command: Getting target VMs for command. Arguments:
DEBUG command: -- names: ["core-01"]
DEBUG command: -- options: {:provider=>nil}
DEBUG command: Finding machine that match name: core-01
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.18r96516
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.18
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO environment: Getting machine: core-01 (virtualbox)
 INFO environment: Uncached load of machine.
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.18r96516
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.18
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO loader: Set "22572720_machine_core-01" = [["2", #<Proc:0x000000029a6210@/home/bryan/coreos/coreos-vagrant/Vagrantfile:51>]]
DEBUG loader: Populating proc cache for ["2", #<Proc:0x000000029a6210@/home/bryan/coreos/coreos-vagrant/Vagrantfile:51>]
 INFO loader: Loading configuration in order: [:home, :root, "22572720_machine_core-01"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: 22572720_machine_core-01 (evaluating)
DEBUG provisioner: Provisioner defined: file
DEBUG provisioner: Provisioner defined: shell
DEBUG loader: Configuration loaded successfully, finalizing and returning
 INFO box_collection: Box not found: coreos-alpha (virtualbox)
 INFO machine: Initializing machine: core-01
 INFO machine: - Provider: VagrantPlugins::ProviderVirtualBox::Provider
 INFO machine: - Box: 
 INFO machine: - Data dir: /home/bryan/coreos/coreos-vagrant/.vagrant/machines/core-01/virtualbox
DEBUG virtualbox: Instantiating the driver for machine ID: nil
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.18r96516
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.18
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO command: With machine: core-01 (#<VagrantPlugins::ProviderVirtualBox::Provider:0x000000014ee3e0 @logger=#<Log4r::Logger:0x000000014ee2f0 @fullname="vagrant::provider::virtualbox", @outputters=[], @additive=true, @name="virtualbox", @path="vagrant::provider", @parent=#<Log4r::Logger:0x00000001978d48 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0000000190fd70 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x0000000190fb90>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000000018d7ab0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00000001978c08 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @machine=#<Vagrant::Machine: core-01 (VagrantPlugins::ProviderVirtualBox::Provider)>, @driver=#<VagrantPlugins::ProviderVirtualBox::Driver::Meta:0x00000002b193b8 @logger=#<Log4r::Logger:0x000000029cd888 @fullname="vagrant::provider::virtualbox::meta", @outputters=[], @additive=true, @name="meta", @path="vagrant::provider::virtualbox", @parent=#<Log4r::Logger:0x000000014ee2f0 @fullname="vagrant::provider::virtualbox", @outputters=[], @additive=true, @name="virtualbox", @path="vagrant::provider", @parent=#<Log4r::Logger:0x00000001978d48 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0000000190fd70 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x0000000190fb90>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000000018d7ab0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00000001978c08 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @vboxmanage_path="VBoxManage", @uuid=nil, @version="4.3.18", @driver=#<VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3:0x00000002b506d8 @logger=#<Log4r::Logger:0x00000002ae8600 @fullname="vagrant::provider::virtualbox_4_3", @outputters=[], @additive=true, @name="virtualbox_4_3", @path="vagrant::provider", @parent=#<Log4r::Logger:0x00000001978d48 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0000000190fd70 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x0000000190fb90>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000000018d7ab0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00000001978c08 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @vboxmanage_path="VBoxManage", @uuid=nil>>, @cap_logger=#<Log4r::Logger:0x00000002a877d8 @fullname="vagrant::capability_host::vagrantplugins::providervirtualbox::provider", @outputters=[], @additive=true, @name="provider", @path="vagrant::capability_host::vagrantplugins::providervirtualbox", @parent=#<Log4r::Logger:0x00000001978d48 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0000000190fd70 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x0000000190fb90>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000000018d7ab0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00000001978c08 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @cap_host_chain=[[:virtualbox, #<#<Class:0x00000002a87cb0>:0x00000002a2e200>]], @cap_args=[#<Vagrant::Machine: core-01 (VagrantPlugins::ProviderVirtualBox::Provider)>], @cap_caps={:virtualbox=>#<Vagrant::Registry:0x00000002a87b20 @items={:forwarded_ports=>#<Proc:0x00000001f79a80@/usr/share/vagrant/plugins/providers/virtualbox/plugin.rb:27>, :nic_mac_addresses=>#<Proc:0x00000001f798c8@/usr/share/vagrant/plugins/providers/virtualbox/plugin.rb:32>}, @results_cache={}>, :hyperv=>#<Vagrant::Registry:0x00000002a87a80 @items={:public_address=>#<Proc:0x000000027d1ed0@/usr/share/vagrant/plugins/providers/hyperv/plugin.rb:25>}, @results_cache={}>, :docker=>#<Vagrant::Registry:0x00000002a879e0 @items={:public_address=>#<Proc:0x00000001f65a58@/usr/share/vagrant/plugins/providers/docker/plugin.rb:54>}, @results_cache={}>}>)
 INFO interface: info: Bringing machine 'core-01' up with 'virtualbox' provider...
Bringing machine 'core-01' up with 'virtualbox' provider...
 INFO batch_action: Enabling parallelization by default.
 INFO batch_action: Disabling parallelization because provider doesn't support it: virtualbox
 INFO batch_action: Batch action will parallelize: false
 INFO batch_action: Starting action: #<Vagrant::Machine:0x00000001972d08> up {:destroy_on_error=>true, :parallel=>true, :provision_ignore_sentinel=>false, :provision_types=>nil}
 INFO machine: Calling action: up on provider VirtualBox (new VM)
DEBUG environment: Attempting to acquire process-lock: machine-action-2a14b7be89a936e9e3a8abfccd874b59
DEBUG environment: Attempting to acquire process-lock: dotlock
 INFO environment: Acquired process lock: dotlock
 INFO environment: Released process lock: dotlock
 INFO environment: Acquired process lock: machine-action-2a14b7be89a936e9e3a8abfccd874b59
 INFO host: Autodetecting host type for [#<Vagrant::Environment: /home/bryan/coreos/coreos-vagrant>]
DEBUG host: Trying: slackware
DEBUG host: Trying: opensuse
DEBUG host: Trying: darwin
DEBUG host: Trying: redhat
DEBUG host: Trying: gentoo
DEBUG host: Trying: arch
DEBUG host: Trying: freebsd
DEBUG host: Trying: windows
DEBUG host: Trying: linux
 INFO host: Detected: linux!
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x00000002800898>
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::CheckVirtualbox:0x000000026aae80>
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.18r96516
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.18
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "list", "hostonlyifs"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x000000026aae58>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x000000027ee058>
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::Created:0x000000027efe30>
 INFO machine: New machine ID: nil
DEBUG virtualbox: Instantiating the driver for machine ID: nil
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.18r96516
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.18
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::Created:0x000000027efe30>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Warden:0x00000002a14be8>
 INFO warden: Calling IN action: #<Proc:0x000000029000b8@/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::HandleBox:0x00000002a14b48>
 INFO interface: output: Box 'coreos-alpha' could not be found. Attempting to find and install...
 INFO interface: output: ==> core-01: Box 'coreos-alpha' could not be found. Attempting to find and install...
==> core-01: Box 'coreos-alpha' could not be found. Attempting to find and install...
 INFO interface: detail: Box Provider: virtualbox
 INFO interface: detail: core-01: Box Provider: virtualbox
 core-01: Box Provider: virtualbox
 INFO interface: detail: Box Version: >= 0
 INFO interface: detail: core-01: Box Version: >= 0
 core-01: Box Version: >= 0
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x000000028669b8>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::BoxAdd:0x0000000279c348>
 INFO environment: Running hook: authenticate_box_url
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x000000026fa520>
 INFO box_add: Downloading box: http://alpha.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json => /home/bryan/.vagrant.d/tmp/boxd78b8988cafc933b442196087298c839b6638361
 INFO downloader: HEAD: http://alpha.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json
 INFO subprocess: Starting process: ["/usr/bin/curl", "-I", "-q", "--fail", "--location", "--max-redirs", "10", "--user-agent", "Vagrant/1.6.5\n", "--continue-at", "-", "-H", "Accept: application/json", "http://alpha.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stderr: % Total % Received % Xferd Average Speed Time Time Time Current
 Dload Upload Total Spent Left Speed
 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
DEBUG subprocess: stderr: curl: (22) The requested URL returned error: 404 Not Found
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 22
 WARN downloader: Downloader exit code: 22
 INFO interface: output: Adding box 'coreos-alpha' (v0) for provider: virtualbox
 INFO interface: output: ==> core-01: Adding box 'coreos-alpha' (v0) for provider: virtualbox
==> core-01: Adding box 'coreos-alpha' (v0) for provider: virtualbox
 INFO box_collection: Box not found: coreos-alpha (virtualbox)
 INFO box_add: Downloading box: http://alpha.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json => /home/bryan/.vagrant.d/tmp/boxd78b8988cafc933b442196087298c839b6638361
 INFO interface: detail: Downloading: http://alpha.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json
 INFO interface: detail: core-01: Downloading: http://alpha.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json
 core-01: Downloading: http://alpha.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json
 INFO downloader: Downloader starting download: 
 INFO downloader: -- Source: http://alpha.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json
 INFO downloader: -- Destination: /home/bryan/.vagrant.d/tmp/boxd78b8988cafc933b442196087298c839b6638361
 INFO subprocess: Starting process: ["/usr/bin/curl", "-q", "--fail", "--location", "--max-redirs", "10", "--user-agent", "Vagrant/1.6.5\n", "--continue-at", "-", "--output", "/home/bryan/.vagrant.d/tmp/boxd78b8988cafc933b442196087298c839b6638361", "http://alpha.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stderr: % Total % Received % Xferd Average Speed Time Time Time Current
 Dload Upload Total Spent Left Speed
 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
DEBUG subprocess: stderr: curl: (22) The requested URL returned error: 404 Not Found
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 22
 WARN downloader: Downloader exit code: 22

DEBUG box_add: Deleting temporary box: 
ERROR warden: Error occurred: An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.

The requested URL returned error: 404 Not Found
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.

The requested URL returned error: 404 Not Found
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.

The requested URL returned error: 404 Not Found
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.

The requested URL returned error: 404 Not Found
 INFO warden: Beginning recovery process...
 INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x000000026aae58>
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO environment: Released process lock: machine-action-2a14b7be89a936e9e3a8abfccd874b59
 INFO environment: Running hook: environment_unload
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x00000001e89440>
ERROR vagrant: Vagrant experienced an error! Details:
ERROR vagrant: #<Vagrant::Errors::DownloaderError: An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.

The requested URL returned error: 404 Not Found>
ERROR vagrant: An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.

The requested URL returned error: 404 Not Found
ERROR vagrant: /usr/lib/ruby/vendor_ruby/vagrant/util/downloader.rb:180:in `execute_curl'
/usr/lib/ruby/vendor_ruby/vagrant/util/downloader.rb:125:in `download!'
/usr/lib/ruby/vendor_ruby/vagrant/action/builtin/box_add.rb:432:in `download'
/usr/lib/ruby/vendor_ruby/vagrant/action/builtin/box_add.rb:318:in `block in box_add'
/usr/lib/ruby/vendor_ruby/vagrant/action/builtin/box_add.rb:310:in `each'
/usr/lib/ruby/vendor_ruby/vagrant/action/builtin/box_add.rb:310:in `box_add'
/usr/lib/ruby/vendor_ruby/vagrant/action/builtin/box_add.rb:130:in `add_direct'
/usr/lib/ruby/vendor_ruby/vagrant/action/builtin/box_add.rb:106:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:34:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/builder.rb:116:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/runner.rb:66:in `block in run'
/usr/lib/ruby/vendor_ruby/vagrant/util/busy.rb:19:in `busy'
/usr/lib/ruby/vendor_ruby/vagrant/action/runner.rb:66:in `run'
/usr/lib/ruby/vendor_ruby/vagrant/action/builtin/handle_box.rb:79:in `handle_box'
/usr/lib/ruby/vendor_ruby/vagrant/action/builtin/handle_box.rb:42:in `block in call'
/usr/lib/ruby/vendor_ruby/vagrant/action/builtin/handle_box.rb:36:in `synchronize'
/usr/lib/ruby/vendor_ruby/vagrant/action/builtin/handle_box.rb:36:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:34:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:95:in `block in finalize_action'
/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:34:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:34:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/builder.rb:116:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/runner.rb:66:in `block in run'
/usr/lib/ruby/vendor_ruby/vagrant/util/busy.rb:19:in `busy'
/usr/lib/ruby/vendor_ruby/vagrant/action/runner.rb:66:in `run'
/usr/lib/ruby/vendor_ruby/vagrant/action/builtin/call.rb:53:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:34:in `call'
/usr/share/vagrant/plugins/providers/virtualbox/action/check_virtualbox.rb:17:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:34:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/builder.rb:116:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/runner.rb:66:in `block in run'
/usr/lib/ruby/vendor_ruby/vagrant/util/busy.rb:19:in `busy'
/usr/lib/ruby/vendor_ruby/vagrant/action/runner.rb:66:in `run'
/usr/lib/ruby/vendor_ruby/vagrant/machine.rb:196:in `action_raw'
/usr/lib/ruby/vendor_ruby/vagrant/machine.rb:173:in `block in action'
/usr/lib/ruby/vendor_ruby/vagrant/environment.rb:440:in `lock'
/usr/lib/ruby/vendor_ruby/vagrant/machine.rb:161:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/machine.rb:161:in `action'
/usr/lib/ruby/vendor_ruby/vagrant/batch_action.rb:82:in `block (2 levels) in run'
 INFO interface: error: An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.

The requested URL returned error: 404 Not Found
An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.

The requested URL returned error: 404 Not Found
 INFO interface: Machine: error-exit ["Vagrant::Errors::DownloaderError", "An error occurred while downloading the remote file. The error\nmessage, if any, is reproduced below. Please fix this error and try\nagain.\n\nThe requested URL returned error: 404 Not Found"]

@crawford
Copy link
Contributor Author


Comment by bhundven


btw, using curl 7.38.0-2

@crawford
Copy link
Contributor Author


Comment by jonboulle


@bhundven I'm stumped, clearly this is causing it to fail, but I have no idea why the curl is 404ing from within Vagrant, but working fine on the command line? This is completely consistent and repeatable, right? Do you get exactly the same behaviour if you try e.g. beta instead of alpha?

 INFO downloader: HEAD: http://alpha.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json
 INFO subprocess: Starting process: ["/usr/bin/curl", "-I", "-q", "--fail", "--location", "--max-redirs", "10", "--user-agent", "Vagrant/1.6.5\n", "--continue-at", "-", "-H", "Accept: application/json", "http://alpha.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json"]
DEBUG subprocess: stderr: curl: (22) The requested URL returned error: 404 Not Found

@crawford
Copy link
Contributor Author


Comment by bhundven


@jonboulle I'm also stumped. It might be helpful to get @mitchellh to take a look at the debug output?

Yes, I just confirmed I have the same issue with beta.

$ vagrant up --debug

 INFO global: Vagrant version: 1.6.5

 INFO global: Ruby version: 2.1.3
 INFO global: RubyGems version: 2.2.2
 INFO global: VAGRANT_INTERNAL_BUNDLERIZED="1"
 INFO global: VAGRANT_LOG="debug"
 INFO global: Plugins:
 INFO global: - bundler = 1.7.2
 INFO global: - i18n = 0.6.11
 INFO global: - log4r = 1.1.10
 INFO global: - micromachine = 1.1.0
 INFO global: - vagrant-vbguest = 0.10.0
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/kernel_v1/plugin.rb
 INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/slackware/plugin.rb
 INFO manager: Registered plugin: Slackware host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/windows/plugin.rb
 INFO manager: Registered plugin: Windows host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/linux/plugin.rb
 INFO manager: Registered plugin: Linux host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/null/plugin.rb
 INFO manager: Registered plugin: null host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/bsd/plugin.rb
 INFO manager: Registered plugin: BSD host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/opensuse/plugin.rb
 INFO manager: Registered plugin: OpenSUSE host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/darwin/plugin.rb
 INFO manager: Registered plugin: Mac OS X host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/redhat/plugin.rb
 INFO manager: Registered plugin: Red Hat host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/gentoo/plugin.rb
 INFO manager: Registered plugin: Gentoo host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/arch/plugin.rb
 INFO manager: Registered plugin: Arch host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/hosts/freebsd/plugin.rb
 INFO manager: Registered plugin: FreeBSD host
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/communicators/ssh/plugin.rb
 INFO manager: Registered plugin: ssh communicator
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/communicators/winrm/plugin.rb
 INFO manager: Registered plugin: winrm communicator
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/providers/virtualbox/plugin.rb
 INFO manager: Registered plugin: VirtualBox provider
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/providers/hyperv/plugin.rb
 INFO manager: Registered plugin: Hyper-V provider
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/providers/docker/plugin.rb
 INFO manager: Registered plugin: docker-provider
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/cfengine/plugin.rb
 INFO manager: Registered plugin: CFEngine Provisioner
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/chef/plugin.rb
 INFO manager: Registered plugin: chef
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/shell/plugin.rb
 INFO manager: Registered plugin: shell
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/file/plugin.rb
 INFO manager: Registered plugin: file
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/ansible/plugin.rb
 INFO manager: Registered plugin: ansible
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/salt/plugin.rb
 INFO manager: Registered plugin: salt
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/puppet/plugin.rb
 INFO manager: Registered plugin: puppet
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/provisioners/docker/plugin.rb
 INFO manager: Registered plugin: docker
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/kernel_v2/plugin.rb
 INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/synced_folders/smb/plugin.rb
 INFO manager: Registered plugin: SMB synced folders
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/synced_folders/rsync/plugin.rb
 INFO manager: Registered plugin: RSync synced folders
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/synced_folders/nfs/plugin.rb
 INFO manager: Registered plugin: NFS synced folders
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/windows/plugin.rb
 INFO manager: Registered plugin: Windows guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/debian/plugin.rb
 INFO manager: Registered plugin: Debian guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/smartos/plugin.rb
 INFO manager: Registered plugin: SmartOS guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/linux/plugin.rb
 INFO manager: Registered plugin: Linux guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/omnios/plugin.rb
 INFO manager: Registered plugin: OmniOS guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/pld/plugin.rb
 INFO manager: Registered plugin: PLD Linux guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/solaris/plugin.rb
 INFO manager: Registered plugin: Solaris guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/tinycore/plugin.rb
 INFO manager: Registered plugin: TinyCore Linux guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/esxi/plugin.rb
 INFO manager: Registered plugin: ESXi guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/fedora/plugin.rb
 INFO manager: Registered plugin: Fedora guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/solaris11/plugin.rb
 INFO manager: Registered plugin: Solaris 11 guest.
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/coreos/plugin.rb
 INFO manager: Registered plugin: CoreOS guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/darwin/plugin.rb
 INFO manager: Registered plugin: Darwin guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/redhat/plugin.rb
 INFO manager: Registered plugin: RedHat guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/gentoo/plugin.rb
 INFO manager: Registered plugin: Gentoo guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/suse/plugin.rb
 INFO manager: Registered plugin: SUSE guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/ubuntu/plugin.rb
 INFO manager: Registered plugin: Ubuntu guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/funtoo/plugin.rb
 INFO manager: Registered plugin: Funtoo guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/arch/plugin.rb
 INFO manager: Registered plugin: Arch guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/nixos/plugin.rb
 INFO manager: Registered plugin: NixOS guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/netbsd/plugin.rb
 INFO manager: Registered plugin: NetBSD guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/mint/plugin.rb
 INFO manager: Registered plugin: Mint guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/openbsd/plugin.rb
 INFO manager: Registered plugin: OpenBSD guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/guests/freebsd/plugin.rb
 INFO manager: Registered plugin: FreeBSD guest
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/provision/plugin.rb
 INFO manager: Registered plugin: provision command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/reload/plugin.rb
 INFO manager: Registered plugin: reload command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/ssh_config/plugin.rb
 INFO manager: Registered plugin: ssh-config command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/resume/plugin.rb
 INFO manager: Registered plugin: resume command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/status/plugin.rb
 INFO manager: Registered plugin: status command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/rdp/plugin.rb
 INFO manager: Registered plugin: rdp command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/up/plugin.rb
 INFO manager: Registered plugin: up command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/help/plugin.rb
 INFO manager: Registered plugin: help command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/init/plugin.rb
 INFO manager: Registered plugin: init command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/plugin/plugin.rb
 INFO manager: Registered plugin: plugin command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/list-commands/plugin.rb
 INFO manager: Registered plugin: list-commands command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/box/plugin.rb
 INFO manager: Registered plugin: box command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/package/plugin.rb
 INFO manager: Registered plugin: package command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/suspend/plugin.rb
 INFO manager: Registered plugin: suspend command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/ssh/plugin.rb
 INFO manager: Registered plugin: ssh command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/global-status/plugin.rb
 INFO manager: Registered plugin: global-status command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/halt/plugin.rb
 INFO manager: Registered plugin: halt command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/version/plugin.rb
 INFO manager: Registered plugin: version command
DEBUG global: Loading core plugin: /usr/share/vagrant/plugins/commands/destroy/plugin.rb
 INFO manager: Registered plugin: destroy command
 INFO global: Loading plugins!
 INFO manager: Registered plugin: vagrant-vbguest
 INFO vagrant: `vagrant` invoked: ["up", "--debug"]
DEBUG vagrant: Creating Vagrant environment
 INFO environment: Environment initialized (#<Vagrant::Environment:0x00000003b3c290>)
 INFO environment: - cwd: /home/bryan/coreos/coreos-vagrant
 INFO environment: Home path: /home/bryan/.vagrant.d
 INFO environment: Local data path: /home/bryan/coreos/coreos-vagrant/.vagrant
DEBUG environment: Creating: /home/bryan/coreos/coreos-vagrant/.vagrant
 INFO environment: Running hook: environment_plugins_loaded
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x00000003c491b0>
 INFO environment: Running hook: environment_load
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x00000003ae0ad0>
 INFO cli: CLI: [] "up" []
DEBUG cli: Invoking command class: VagrantPlugins::CommandUp::Command []
DEBUG command: 'Up' each target VM...
 INFO loader: Set :root = #<Pathname:/home/bryan/coreos/coreos-vagrant/Vagrantfile>
DEBUG loader: Populating proc cache for #<Pathname:/home/bryan/coreos/coreos-vagrant/Vagrantfile>
DEBUG loader: Load procs for pathname: /home/bryan/coreos/coreos-vagrant/Vagrantfile
 INFO root: Version requirements from Vagrantfile: [">= 1.6.0"]
 INFO root: - Version requirements satisfied!
 INFO loader: Loading configuration in order: [:home, :root]
DEBUG loader: Loading from: root (evaluating)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG command: Getting target VMs for command. Arguments:
DEBUG command: -- names: ["core-01"]
DEBUG command: -- options: {:provider=>nil}
DEBUG command: Finding machine that match name: core-01
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.18r96516
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.18
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO environment: Getting machine: core-01 (virtualbox)
 INFO environment: Uncached load of machine.
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.18r96516
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.18
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO loader: Set "29664180_machine_core-01" = [["2", #<Proc:0x00000003782898@/home/bryan/coreos/coreos-vagrant/Vagrantfile:51>]]
DEBUG loader: Populating proc cache for ["2", #<Proc:0x00000003782898@/home/bryan/coreos/coreos-vagrant/Vagrantfile:51>]
 INFO loader: Loading configuration in order: [:home, :root, "29664180_machine_core-01"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: 29664180_machine_core-01 (evaluating)
DEBUG provisioner: Provisioner defined: file
DEBUG provisioner: Provisioner defined: shell
DEBUG loader: Configuration loaded successfully, finalizing and returning
 INFO box_collection: Box not found: coreos-beta (virtualbox)
 INFO machine: Initializing machine: core-01
 INFO machine: - Provider: VagrantPlugins::ProviderVirtualBox::Provider
 INFO machine: - Box: 
 INFO machine: - Data dir: /home/bryan/coreos/coreos-vagrant/.vagrant/machines/core-01/virtualbox
DEBUG virtualbox: Instantiating the driver for machine ID: nil
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.18r96516
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.18
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO command: With machine: core-01 (#<VagrantPlugins::ProviderVirtualBox::Provider:0x00000003867650 @logger=#<Log4r::Logger:0x00000003867600 @fullname="vagrant::provider::virtualbox", @outputters=[], @additive=true, @name="virtualbox", @path="vagrant::provider", @parent=#<Log4r::Logger:0x00000003074268 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000003042240 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x000000030421a0>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0000000303da88 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00000003074100 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @machine=#<Vagrant::Machine: core-01 (VagrantPlugins::ProviderVirtualBox::Provider)>, @driver=#<VagrantPlugins::ProviderVirtualBox::Driver::Meta:0x00000003810f58 @logger=#<Log4r::Logger:0x000000037bbc88 @fullname="vagrant::provider::virtualbox::meta", @outputters=[], @additive=true, @name="meta", @path="vagrant::provider::virtualbox", @parent=#<Log4r::Logger:0x00000003867600 @fullname="vagrant::provider::virtualbox", @outputters=[], @additive=true, @name="virtualbox", @path="vagrant::provider", @parent=#<Log4r::Logger:0x00000003074268 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000003042240 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x000000030421a0>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0000000303da88 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00000003074100 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @vboxmanage_path="VBoxManage", @uuid=nil, @version="4.3.18", @driver=#<VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3:0x000000036d7f38 @logger=#<Log4r::Logger:0x0000000304fa58 @fullname="vagrant::provider::virtualbox_4_3", @outputters=[], @additive=true, @name="virtualbox_4_3", @path="vagrant::provider", @parent=#<Log4r::Logger:0x00000003074268 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000003042240 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x000000030421a0>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0000000303da88 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00000003074100 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @interrupted=false, @vboxmanage_path="VBoxManage", @uuid=nil>>, @cap_logger=#<Log4r::Logger:0x00000003007a50 @fullname="vagrant::capability_host::vagrantplugins::providervirtualbox::provider", @outputters=[], @additive=true, @name="provider", @path="vagrant::capability_host::vagrantplugins::providervirtualbox", @parent=#<Log4r::Logger:0x00000003074268 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x00000003042240 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x000000030421a0>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0000000303da88 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00000003074100 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @cap_host_chain=[[:virtualbox, #<#<Class:0x0000000300c2d0>:0x00000002f4a928>]], @cap_args=[#<Vagrant::Machine: core-01 (VagrantPlugins::ProviderVirtualBox::Provider)>], @cap_caps={:virtualbox=>#<Vagrant::Registry:0x0000000300c0c8 @items={:forwarded_ports=>#<Proc:0x0000000303cef8@/usr/share/vagrant/plugins/providers/virtualbox/plugin.rb:27>, :nic_mac_addresses=>#<Proc:0x0000000303ce58@/usr/share/vagrant/plugins/providers/virtualbox/plugin.rb:32>}, @results_cache={}>, :hyperv=>#<Vagrant::Registry:0x00000003007f00 @items={:public_address=>#<Proc:0x00000002f3ecb8@/usr/share/vagrant/plugins/providers/hyperv/plugin.rb:25>}, @results_cache={}>, :docker=>#<Vagrant::Registry:0x00000003007cf8 @items={:public_address=>#<Proc:0x0000000301ec50@/usr/share/vagrant/plugins/providers/docker/plugin.rb:54>}, @results_cache={}>}>)
 INFO interface: info: Bringing machine 'core-01' up with 'virtualbox' provider...
Bringing machine 'core-01' up with 'virtualbox' provider...
 INFO batch_action: Enabling parallelization by default.
 INFO batch_action: Disabling parallelization because provider doesn't support it: virtualbox
 INFO batch_action: Batch action will parallelize: false
 INFO batch_action: Starting action: #<Vagrant::Machine:0x00000003925ee8> up {:destroy_on_error=>true, :parallel=>true, :provision_ignore_sentinel=>false, :provision_types=>nil}
 INFO machine: Calling action: up on provider VirtualBox (new VM)
DEBUG environment: Attempting to acquire process-lock: machine-action-2a14b7be89a936e9e3a8abfccd874b59
DEBUG environment: Attempting to acquire process-lock: dotlock
 INFO environment: Acquired process lock: dotlock
 INFO environment: Released process lock: dotlock
 INFO environment: Acquired process lock: machine-action-2a14b7be89a936e9e3a8abfccd874b59
 INFO host: Autodetecting host type for [#<Vagrant::Environment: /home/bryan/coreos/coreos-vagrant>]
DEBUG host: Trying: slackware
DEBUG host: Trying: opensuse
DEBUG host: Trying: darwin
DEBUG host: Trying: redhat
DEBUG host: Trying: gentoo
DEBUG host: Trying: arch
DEBUG host: Trying: freebsd
DEBUG host: Trying: windows
DEBUG host: Trying: linux
 INFO host: Detected: linux!
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x00000003b7bfa8>
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::CheckVirtualbox:0x00000003a291c8>
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.18r96516
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.18
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "list", "hostonlyifs"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Name: vboxnet0
GUID: 786f6276-656e-4074-8000-0a0027000000
DHCP: Disabled
IPAddress: 172.17.8.1
NetworkMask: 255.255.255.0
IPV6Address: 
IPV6NetworkMaskPrefixLength: 0
HardwareAddress: 0a:00:27:00:00:00
MediumType: Ethernet
Status: Down
VBoxNetworkName: HostInterfaceNetworking-vboxnet0

DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x00000003a29100>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x00000003733680>
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::Created:0x0000000370f258>
 INFO machine: New machine ID: nil
DEBUG virtualbox: Instantiating the driver for machine ID: nil
 INFO base: VBoxManage path: VBoxManage
 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "--version"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 4.3.18r96516
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 4.3.18
 INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_4_3
 INFO base: VBoxManage path: VBoxManage
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::Created:0x0000000370f258>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Warden:0x00000003afc780>
 INFO warden: Calling IN action: #<Proc:0x00000003a6e7c8@/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::HandleBox:0x00000003afc708>
 INFO interface: output: Box 'coreos-beta' could not be found. Attempting to find and install...
 INFO interface: output: ==> core-01: Box 'coreos-beta' could not be found. Attempting to find and install...
==> core-01: Box 'coreos-beta' could not be found. Attempting to find and install...
 INFO interface: detail: Box Provider: virtualbox
 INFO interface: detail: core-01: Box Provider: virtualbox
 core-01: Box Provider: virtualbox
 INFO interface: detail: Box Version: >= 308.0.1
 INFO interface: detail: core-01: Box Version: >= 308.0.1
 core-01: Box Version: >= 308.0.1
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x000000039e36a0>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::BoxAdd:0x00000003974bd8>
 INFO environment: Running hook: authenticate_box_url
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x000000038ce828>
 INFO box_add: Downloading box: http://beta.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json => /home/bryan/.vagrant.d/tmp/boxebb793357aa32ed2d0acaa42e1694283ab31b77c
 INFO downloader: HEAD: http://beta.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json
 INFO subprocess: Starting process: ["/usr/bin/curl", "-I", "-q", "--fail", "--location", "--max-redirs", "10", "--user-agent", "Vagrant/1.6.5\n", "--continue-at", "-", "-H", "Accept: application/json", "http://beta.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stderr: % Total % Received % Xferd Average Speed Time Time Time Current
 Dload Upload Total Spent Left Speed
 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
DEBUG subprocess: stderr: curl: (22) The requested URL returned error: 404 Not Found
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 22
 WARN downloader: Downloader exit code: 22
ERROR warden: Error occurred: You specified a box version constraint with a direct box file
path. Box version constraints only work with boxes from Vagrant
Cloud or a custom box host. Please remove the version constraint
and try again.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: You specified a box version constraint with a direct box file
path. Box version constraints only work with boxes from Vagrant
Cloud or a custom box host. Please remove the version constraint
and try again.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: You specified a box version constraint with a direct box file
path. Box version constraints only work with boxes from Vagrant
Cloud or a custom box host. Please remove the version constraint
and try again.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: You specified a box version constraint with a direct box file
path. Box version constraints only work with boxes from Vagrant
Cloud or a custom box host. Please remove the version constraint
and try again.
 INFO warden: Beginning recovery process...
 INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x00000003a29100>
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO environment: Released process lock: machine-action-2a14b7be89a936e9e3a8abfccd874b59
 INFO environment: Running hook: environment_unload
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: #<Vagrant::Action::Builder:0x00000003795128>
ERROR vagrant: Vagrant experienced an error! Details:
ERROR vagrant: #<Vagrant::Errors::BoxAddDirectVersion: You specified a box version constraint with a direct box file
path. Box version constraints only work with boxes from Vagrant
Cloud or a custom box host. Please remove the version constraint
and try again.>
ERROR vagrant: You specified a box version constraint with a direct box file
path. Box version constraints only work with boxes from Vagrant
Cloud or a custom box host. Please remove the version constraint
and try again.
ERROR vagrant: /usr/lib/ruby/vendor_ruby/vagrant/action/builtin/box_add.rb:124:in `add_direct'
/usr/lib/ruby/vendor_ruby/vagrant/action/builtin/box_add.rb:106:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:34:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/builder.rb:116:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/runner.rb:66:in `block in run'
/usr/lib/ruby/vendor_ruby/vagrant/util/busy.rb:19:in `busy'
/usr/lib/ruby/vendor_ruby/vagrant/action/runner.rb:66:in `run'
/usr/lib/ruby/vendor_ruby/vagrant/action/builtin/handle_box.rb:79:in `handle_box'
/usr/lib/ruby/vendor_ruby/vagrant/action/builtin/handle_box.rb:42:in `block in call'
/usr/lib/ruby/vendor_ruby/vagrant/action/builtin/handle_box.rb:36:in `synchronize'
/usr/lib/ruby/vendor_ruby/vagrant/action/builtin/handle_box.rb:36:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:34:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:95:in `block in finalize_action'
/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:34:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:34:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/builder.rb:116:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/runner.rb:66:in `block in run'
/usr/lib/ruby/vendor_ruby/vagrant/util/busy.rb:19:in `busy'
/usr/lib/ruby/vendor_ruby/vagrant/action/runner.rb:66:in `run'
/usr/lib/ruby/vendor_ruby/vagrant/action/builtin/call.rb:53:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:34:in `call'
/usr/share/vagrant/plugins/providers/virtualbox/action/check_virtualbox.rb:17:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/warden.rb:34:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/builder.rb:116:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/action/runner.rb:66:in `block in run'
/usr/lib/ruby/vendor_ruby/vagrant/util/busy.rb:19:in `busy'
/usr/lib/ruby/vendor_ruby/vagrant/action/runner.rb:66:in `run'
/usr/lib/ruby/vendor_ruby/vagrant/machine.rb:196:in `action_raw'
/usr/lib/ruby/vendor_ruby/vagrant/machine.rb:173:in `block in action'
/usr/lib/ruby/vendor_ruby/vagrant/environment.rb:440:in `lock'
/usr/lib/ruby/vendor_ruby/vagrant/machine.rb:161:in `call'
/usr/lib/ruby/vendor_ruby/vagrant/machine.rb:161:in `action'
/usr/lib/ruby/vendor_ruby/vagrant/batch_action.rb:82:in `block (2 levels) in run'
 INFO interface: error: You specified a box version constraint with a direct box file
path. Box version constraints only work with boxes from Vagrant
Cloud or a custom box host. Please remove the version constraint
and try again.
You specified a box version constraint with a direct box file
path. Box version constraints only work with boxes from Vagrant
Cloud or a custom box host. Please remove the version constraint
and try again.
 INFO interface: Machine: error-exit ["Vagrant::Errors::BoxAddDirectVersion", "You specified a box version constraint with a direct box file\npath. Box version constraints only work with boxes from Vagrant\nCloud or a custom box host. Please remove the version constraint\nand try again."]
$ curl http://beta.release.core-os.net/amd64-usr/current/coreos_production_vagrant.json
{
 "name": "coreos-beta",
 "description": "CoreOS beta",
 "versions": [{
 "version": "444.4.0",
 "providers": [{
 "name": "virtualbox",
 "url": "http://beta.release.core-os.net/amd64-usr/444.4.0/coreos_production_vagrant.box",
 "checksum_type": "sha256",
 "checksum": "d409e34c1ccb4cc49bf5d8795b1f1c3bedb0f7a27c5eeec8822a55236f4e04e7"
 }]
 }]
}

@crawford
Copy link
Contributor Author


Comment by jonboulle


@bhundven mind filing an issue against the Vagrant repo and linking it back here? Thanks!

@crawford
Copy link
Contributor Author


Comment by bhundven


@jonboulle So, as @mitchellh said. Something wrong with coreos's web server?

@crawford
Copy link
Contributor Author


Comment by jonboulle


@bhundven We host these files on Google Cloud Storage so it's not our web server per se. I will update the Vagrant ticket.

@AlexNPavel
Copy link

This isn't an issue with modern versions of coreos-vagrant as version handling done differently now

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants