Merge pull request #6488 from dvorak/rescue-enetunreach
Add Errno::ENETUNREACH to SSH rescue
This commit is contained in:
commit
c754c0bf34
|
@ -420,7 +420,7 @@ module VagrantPlugins
|
||||||
rescue Errno::EHOSTDOWN
|
rescue Errno::EHOSTDOWN
|
||||||
# This is raised if we get an ICMP DestinationUnknown error.
|
# This is raised if we get an ICMP DestinationUnknown error.
|
||||||
raise Vagrant::Errors::SSHHostDown
|
raise Vagrant::Errors::SSHHostDown
|
||||||
rescue Errno::EHOSTUNREACH
|
rescue Errno::EHOSTUNREACH, Errno::ENETUNREACH
|
||||||
# This is raised if we can't work out how to route traffic.
|
# This is raised if we can't work out how to route traffic.
|
||||||
raise Vagrant::Errors::SSHNoRoute
|
raise Vagrant::Errors::SSHNoRoute
|
||||||
rescue Net::SSH::Exception => e
|
rescue Net::SSH::Exception => e
|
||||||
|
|
Loading…
Reference in New Issue