Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
packer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kristopher Ruzic
packer
Commits
bd8f8941
Commit
bd8f8941
authored
Jun 29, 2013
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
post-processor/vagrant: use proper provider type for VMware boxes
parent
b317c763
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
CHANGELOG.md
CHANGELOG.md
+1
-0
post-processor/vagrant/vmware.go
post-processor/vagrant/vmware.go
+1
-1
No files found.
CHANGELOG.md
View file @
bd8f8941
...
...
@@ -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]
...
...
post-processor/vagrant/vmware.go
View file @
bd8f8941
...
...
@@ -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
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment