builder/vmware: always set msg.AutoAnswer
This commit is contained in:
parent
e26f7e87e0
commit
fb8b82fca5
|
@ -88,6 +88,9 @@ func (stepCreateVMX) Run(state multistep.StateBag) multistep.StepAction {
|
||||||
vmxData["floppy0.fileName"] = floppyPathRaw.(string)
|
vmxData["floppy0.fileName"] = floppyPathRaw.(string)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Set this so that no dialogs ever appear from Packer.
|
||||||
|
vmxData["msg.autoAnswer"] = "true"
|
||||||
|
|
||||||
vmxPath := filepath.Join(config.OutputDir, config.VMName+".vmx")
|
vmxPath := filepath.Join(config.OutputDir, config.VMName+".vmx")
|
||||||
if err := WriteVMX(vmxPath, vmxData); err != nil {
|
if err := WriteVMX(vmxPath, vmxData); err != nil {
|
||||||
err := fmt.Errorf("Error creating VMX file: %s", err)
|
err := fmt.Errorf("Error creating VMX file: %s", err)
|
||||||
|
@ -137,7 +140,6 @@ ide1:0.fileName = "{{ .ISOPath }}"
|
||||||
ide1:0.deviceType = "cdrom-image"
|
ide1:0.deviceType = "cdrom-image"
|
||||||
isolation.tools.hgfs.disable = "FALSE"
|
isolation.tools.hgfs.disable = "FALSE"
|
||||||
memsize = "512"
|
memsize = "512"
|
||||||
msg.autoAnswer = "true"
|
|
||||||
nvram = "{{ .Name }}.nvram"
|
nvram = "{{ .Name }}.nvram"
|
||||||
pciBridge0.pciSlotNumber = "17"
|
pciBridge0.pciSlotNumber = "17"
|
||||||
pciBridge0.present = "TRUE"
|
pciBridge0.present = "TRUE"
|
||||||
|
|
Loading…
Reference in New Issue