sleeping with the fiSSHes?

This commit is contained in:
Hedgehog 2011-12-08 13:33:56 +11:00 committed by Mitchell Hashimoto
parent 99b43fbeb8
commit a4423270f7
2 changed files with 5 additions and 0 deletions

View File

@ -6,6 +6,7 @@
logging is silent.
- Linux uses `shutdown -h` instead of `halt` to hopefully more consistently
power off the system. [GH-575]
- Tweaks to SSH to hopefully be more reliable in coming up.
## 0.8.8 (December 1, 2011)

View File

@ -74,6 +74,8 @@ module Vagrant
# Connect to SSH and gather the session
session = retryable(:tries => @vm.config.ssh.max_tries, :on => exceptions) do
sleep 4 # Hacky but helps with issue #391, #455, etc.
connection = Net::SSH.start(@vm.config.ssh.host,
@vm.config.ssh.username,
opts.merge( :keys => [private_key_path],
@ -81,6 +83,8 @@ module Vagrant
:user_known_hosts_file => [],
:paranoid => false,
:config => false))
sleep 4 # Hacky but helps with issue #391, #455, etc.
SSH::Session.new(connection, @vm)
end