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

Commit

Permalink
Fixes #56
Browse files Browse the repository at this point in the history
Merge branch 'feature/#56_fix_ssh_hostdown' into release/v0.4.0

* feature/#56_fix_ssh_hostdown:
  changes
  • Loading branch information
frapposelli committed Jun 16, 2014
2 parents e161c3b + b2ec022 commit cad0e77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/vagrant-vcloud/action/read_ssh_info.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def check_for_port(ip, port, port_name)
s.close
@logger.debug("#{port_name} Connection successful !")
return true
rescue Errno::ECONNREFUSED, Errno::EHOSTUNREACH
rescue Errno::ECONNREFUSED, Errno::EHOSTUNREACH, Errno::EHOSTDOWN
@logger.debug("#{port_name} Connection Refused/Host Unreachable...")
return false
end
Expand Down

0 comments on commit cad0e77

Please sign in to comment.