post-processor/vagrant: use proper provider type for VMware boxes
This commit is contained in:
parent
5ad40dd184
commit
57c53ea2d7
|
@ -12,6 +12,7 @@ BUG FIXES:
|
||||||
* amazon-ebs: Sleep between checking instance state to avoid
|
* amazon-ebs: Sleep between checking instance state to avoid
|
||||||
RequestLimitExceeded [GH-50]
|
RequestLimitExceeded [GH-50]
|
||||||
* vagrant: Rename VirtualBox ovf to "box.ovf" [GH-64]
|
* vagrant: Rename VirtualBox ovf to "box.ovf" [GH-64]
|
||||||
|
* vagrant: VMware boxes have the correct provider type.
|
||||||
* vmware: Properly populate files in artifact so that the Vagrant
|
* vmware: Properly populate files in artifact so that the Vagrant
|
||||||
post-processor works. [GH-63]
|
post-processor works. [GH-63]
|
||||||
|
|
||||||
|
|
|
@ -88,7 +88,7 @@ func (p *VMwareBoxPostProcessor) PostProcess(ui packer.Ui, artifact packer.Artif
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create the metadata
|
// Create the metadata
|
||||||
metadata := map[string]string{"provider": "vmware"}
|
metadata := map[string]string{"provider": "vmware_desktop"}
|
||||||
if err := WriteMetadata(dir, metadata); err != nil {
|
if err := WriteMetadata(dir, metadata); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue