mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-06-03 14:00:15 -04:00
16 lines
359 B
Ruby
16 lines
359 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
module VagrantPlugins
|
|
module DockerProvisioner
|
|
module Cap
|
|
module Linux
|
|
module DockerDaemonRunning
|
|
def self.docker_daemon_running(machine)
|
|
machine.communicate.test("test -f /var/run/docker.pid")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|