Vagrantfile: Update Docker fallback patch for installed but broken case.

The corresponding upstream PR has been updated as well.

Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
Anders Kaseorg
2019-05-30 13:15:02 -07:00
committed by Tim Abbott
parent f366c50913
commit eeeaf01eef

2
Vagrantfile vendored
View File

@@ -39,7 +39,7 @@ else
method(:usable?).owner == singleton_class or def self.usable?(raise_error=false)
VagrantPlugins::DockerProvider::Driver.new.execute("docker", "version")
true
rescue Vagrant::Errors::CommandUnavailable
rescue Vagrant::Errors::CommandUnavailable, VagrantPlugins::DockerProvider::Errors::ExecuteError
raise if raise_error
return false
end