From 268ce81dd3874822c8afa221e8bd1f8da35fa534 Mon Sep 17 00:00:00 2001 From: Mark Peek Date: Sun, 11 Oct 2015 11:48:16 -0700 Subject: [PATCH] helper/communicator: allow docker custom communicator --- helper/communicator/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helper/communicator/config.go b/helper/communicator/config.go index 53de3f81e..572394fff 100644 --- a/helper/communicator/config.go +++ b/helper/communicator/config.go @@ -65,7 +65,7 @@ func (c *Config) Prepare(ctx *interpolate.Context) []error { if es := c.prepareWinRM(ctx); len(es) > 0 { errs = append(errs, es...) } - case "none": + case "docker", "none": break default: return []error{fmt.Errorf("Communicator type %s is invalid", c.Type)}