30 lines
642 B
Ruby
30 lines
642 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
module VagrantPlugins
|
|
module DockerProvisioner
|
|
module Cap
|
|
module Linux
|
|
module DockerInstalled
|
|
def self.docker_installed(machine)
|
|
paths = [
|
|
"/bin/docker",
|
|
"/usr/bin/docker",
|
|
"/usr/local/bin/docker",
|
|
"/usr/sbin/docker",
|
|
]
|
|
|
|
paths.each do |p|
|
|
if machine.communicate.test("test -f #{p}", sudo: true)
|
|
return true
|
|
end
|
|
end
|
|
|
|
return false
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|