Do you have the steps you did use?
On Tue, Apr 21, 2015 at 11:11 AM, Eric Martin <[email protected]> wrote: > Hello, > > I am attempting to provision a box for the first time since I upgraded to > the latest version of Vagrant (1.7.2) and I am no longer able to do so. I've > followed the endless amount of related ssh / insecure key posts and issues > on github, but I am unable to get it working. > > Current environment: > OSX Yosemite 10.10.2 > Vagrant 1.7.2 > VirtualBox 4.3.26r98988 > > I create a base box with some default software that we need. It uses the > following base box: > https://vagrantcloud.com/ubuntu/trusty64/version/1/provider/virtualbox.box > > Vagrantfile for the base box: > # -*- mode: ruby -*- > # vi: set ft=ruby : > > Vagrant.configure("2") do |config| > > config.vm.box = "trusty64" > config.vm.box_url = > "https://vagrantcloud.com/ubuntu/trusty64/version/1/provider/virtualbox.box" > > config.vm.provider "virtualbox" do |vb| > vb.memory = 4096 > end > > config.vm.provision "shell" , path: "../lib/base.sh" > > end > > > > I am able to provision that box w/o any issues. After I package and add the > box to Vagrant, I then use it to provision another box with more specific > software. When I use that base box to provision a new box, I get the > Authentication failure messages until it finally times out. > > I've tried deleting my ~/.vagrant.d/ folder, adding config.ssh.insert_key = > false to the Vagrantfile, I've even followed various suggestions on the > github issues page. No matter what I do, I am unable to get it to work. I've > attached the output from a vagrant up --debug > > I'm going to attempt downgrading to Vagrant 1.7.0, but would like to know > how to make this work with the latest version. > > -- > You received this message because you are subscribed to the Google Groups > "Vagrant" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
