17 lines
367 B
Ruby
17 lines
367 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
module VagrantPlugins
|
|
module DockerProvisioner
|
|
module Cap
|
|
module Windows
|
|
module DockerDaemonRunning
|
|
def self.docker_daemon_running(machine)
|
|
machine.communicate.test("tasklist | find \"`\"dockerd`\"\"")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|