Commit da749e24 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

Merge pull request #2407 from dayer4b/master

builder/null: When using a Null builder, this error message is incorrect.
parents eaf8550e fcb7967b
...@@ -33,7 +33,7 @@ func NewConfig(raws ...interface{}) (*Config, []string, error) { ...@@ -33,7 +33,7 @@ func NewConfig(raws ...interface{}) (*Config, []string, error) {
} }
if c.CommConfig.SSHHost == "" { if c.CommConfig.SSHHost == "" {
errs = packer.MultiErrorAppend(errs, errs = packer.MultiErrorAppend(errs,
fmt.Errorf("host must be specified")) fmt.Errorf("ssh_host must be specified"))
} }
if c.CommConfig.SSHUsername == "" { if c.CommConfig.SSHUsername == "" {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment