From 750e09d51d0a3535e5d01c1926b28b1dc7a278b9 Mon Sep 17 00:00:00 2001 From: Sunil K Chopra Date: Tue, 7 Jul 2015 17:04:27 -0500 Subject: [PATCH] should be ssh_host, not host --- builder/null/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/null/config.go b/builder/null/config.go index a6a12332e..c207f8087 100644 --- a/builder/null/config.go +++ b/builder/null/config.go @@ -33,7 +33,7 @@ func NewConfig(raws ...interface{}) (*Config, []string, error) { } if c.CommConfig.SSHHost == "" { errs = packer.MultiErrorAppend(errs, - fmt.Errorf("host must be specified")) + fmt.Errorf("ssh_host must be specified")) } if c.CommConfig.SSHUsername == "" {