From 12bed9eafcb445df166721ee273dca18b2495a7d Mon Sep 17 00:00:00 2001 From: Vincent Giersch Date: Fri, 27 Feb 2015 10:53:38 +0000 Subject: [PATCH] Provision OpenStack instances with Docker Since 54f36078, Machine doesn't check anymore if Docker is installed in the created instances, which breaks the compatibility between v0.1.0-rc5 and v0.1.0 when using Machine with some cloud providers like RunAbove.com. Signed-off-by: Vincent Giersch --- host.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host.go b/host.go index f9321d585f..fe7817e4d0 100644 --- a/host.go +++ b/host.go @@ -403,7 +403,7 @@ func (h *Host) Create(name string) error { func (h *Host) Provision() error { // "local" providers use b2d; no provisioning necessary switch h.Driver.DriverName() { - case "none", "virtualbox", "vmwarefusion", "vmwarevsphere", "openstack": + case "none", "virtualbox", "vmwarefusion", "vmwarevsphere": return nil }