2014-04-10 20:42:12 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module GuestCoreOS
|
|
|
|
module Cap
|
|
|
|
module Docker
|
|
|
|
def self.docker_daemon_running(machine)
|
2014-04-15 00:01:00 +00:00
|
|
|
machine.communicate.test("test -S /run/docker.sock")
|
2014-04-10 20:42:12 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|