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
749baa19
Commit
749baa19
authored
Sep 03, 2014
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
builder/virtualbox/iso: append timestamp to name [GH-1365]
parent
23e2387d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
CHANGELOG.md
CHANGELOG.md
+2
-0
builder/virtualbox/iso/builder.go
builder/virtualbox/iso/builder.go
+1
-1
No files found.
CHANGELOG.md
View file @
749baa19
...
...
@@ -36,6 +36,8 @@ BUG FIXES:
*
builder/virtualbox/all: Seed RNG to avoid same ports. [GH-1386]
*
builder/virtualbox/all: Better error if guest additions URL couldn't be
detected. [GH-1439]
*
builder/virtualbox/iso: Append timestamp to default name for parallel
builds. [GH-1365]
*
builder/vmware/all:
`ssh_host`
accepts templates. [GH-1396]
*
builder/vmware/all: Don't remount floppy in VMX post step. [GH-1239]
*
builder/vmware/vmx: Do not re-add floppy disk files to VMX [GH-1361]
...
...
builder/virtualbox/iso/builder.go
View file @
749baa19
...
...
@@ -116,7 +116,7 @@ func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {
}
if
b
.
config
.
VMName
==
""
{
b
.
config
.
VMName
=
fmt
.
Sprintf
(
"packer-%s"
,
b
.
config
.
PackerBuildName
)
b
.
config
.
VMName
=
fmt
.
Sprintf
(
"packer-%s
-{{timestamp}}
"
,
b
.
config
.
PackerBuildName
)
}
// Errors
...
...
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