helper/communicator: allow docker custom communicator

This commit is contained in:
Mark Peek 2015-10-11 11:48:16 -07:00
parent 2306f4a4e4
commit 268ce81dd3
1 changed files with 1 additions and 1 deletions

View File

@ -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)}