post-processor/vagrant: use proper provider type for VMware boxes

This commit is contained in:
Mitchell Hashimoto 2013-06-29 13:52:18 -07:00
parent b317c763ac
commit bd8f89410b
2 changed files with 2 additions and 1 deletions

View File

@ -12,6 +12,7 @@ BUG FIXES:
* amazon-ebs: Sleep between checking instance state to avoid
RequestLimitExceeded [GH-50]
* 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
post-processor works. [GH-63]

View File

@ -88,7 +88,7 @@ func (p *VMwareBoxPostProcessor) PostProcess(ui packer.Ui, artifact packer.Artif
}
// Create the metadata
metadata := map[string]string{"provider": "vmware"}
metadata := map[string]string{"provider": "vmware_desktop"}
if err := WriteMetadata(dir, metadata); err != nil {
return nil, err
}