From 00c40f82b1304483d823b9566076db953e7f4573 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 10 Dec 2011 21:07:45 -0800 Subject: [PATCH 1/2] Return true on ssh up? --- lib/vagrant/ssh.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/ssh.rb b/lib/vagrant/ssh.rb index 3f9af307b..984c14ae7 100644 --- a/lib/vagrant/ssh.rb +++ b/lib/vagrant/ssh.rb @@ -118,7 +118,7 @@ module Vagrant execute(:timeout => env.config.ssh.timeout, :port => ssh_port) { |ssh| } end - false + true rescue Net::SSH::AuthenticationFailed raise Errors::SSHAuthenticationFailed rescue Timeout::Error, Errno::ECONNREFUSED, Net::SSH::Disconnect, From b67dc75dfcbaa18826f3a1a757cfdadcad4a2d77 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 10 Dec 2011 21:08:13 -0800 Subject: [PATCH 2/2] v0.8.10 --- CHANGELOG.md | 2 +- lib/vagrant/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 55c06b805..66be0eb16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.8.9 (December 10, 2011) +## 0.8.10 (December 10, 2011) - Revert the SSH tweaks made in 0.8.8. It affected stability that I'd rather not test in a patch release. diff --git a/lib/vagrant/version.rb b/lib/vagrant/version.rb index 6ca44d385..4644f67f4 100644 --- a/lib/vagrant/version.rb +++ b/lib/vagrant/version.rb @@ -2,5 +2,5 @@ module Vagrant # This will always be up to date with the current version of Vagrant, # since it is used to generate the gemspec and is also the source of # the version for `vagrant -v` - VERSION = "0.8.9" + VERSION = "0.8.10" end