provisioners/docker: fix linux cap for daemon running

This commit is contained in:
Mitchell Hashimoto 2014-04-14 17:00:12 -07:00
parent 88683221f4
commit 8a9bbdb71a
2 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,8 @@
BUG FIXES:
- command/rsync-auto: Works properly on Windows.
- guests/linux: Fix test for Docker provisioner whether Docker is
running.
## 1.5.3 (April 14, 2014)

View File

@ -4,7 +4,7 @@ module VagrantPlugins
module Linux
module DockerDaemonRunning
def self.docker_daemon_running(machine)
machine.communicate.test("test -f /var/run/docker/pid")
machine.communicate.test("test -f /var/run/docker.pid")
end
end
end