Prevent hang on export for remote ESXi build due to empty remote_password
This commit is contained in:
parent
5952892e10
commit
c8199458a7
|
@ -221,6 +221,11 @@ func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {
|
||||||
fmt.Errorf("format must be one of ova, ovf, or vmx"))
|
fmt.Errorf("format must be one of ova, ovf, or vmx"))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if b.config.RemoteType == "esx5" && b.config.SkipExport != true && b.config.RemotePassword == "" {
|
||||||
|
errs = packer.MultiErrorAppend(errs,
|
||||||
|
fmt.Errorf("exporting the vm (with ovftool) requires that you set a value for remote_password"))
|
||||||
|
}
|
||||||
|
|
||||||
// Warnings
|
// Warnings
|
||||||
if b.config.ShutdownCommand == "" {
|
if b.config.ShutdownCommand == "" {
|
||||||
warnings = append(warnings,
|
warnings = append(warnings,
|
||||||
|
|
Loading…
Reference in New Issue