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
4a60e469
Commit
4a60e469
authored
Jun 29, 2015
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update CHANGELOG
parent
677498a5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
CHANGELOG.md
CHANGELOG.md
+2
-0
builder/vmware/iso/driver_esx5.go
builder/vmware/iso/driver_esx5.go
+3
-3
No files found.
CHANGELOG.md
View file @
4a60e469
...
@@ -11,6 +11,8 @@ BUG FIXES:
...
@@ -11,6 +11,8 @@ BUG FIXES:
*
builder/amazon: Fix spot instance cleanup to remove the correct request [GH-2327]
*
builder/amazon: Fix spot instance cleanup to remove the correct request [GH-2327]
*
builder/amazon-instance: Fix issue with creating AMIs without specifying a
*
builder/amazon-instance: Fix issue with creating AMIs without specifying a
virtualization type [GH-2330]
virtualization type [GH-2330]
*
builder/vmware-iso: Setting
`checksum_type`
to
`none`
for ESX builds
now works [GH-2323]
## 0.8.0 (June 23, 2015)
## 0.8.0 (June 23, 2015)
...
...
builder/vmware/iso/driver_esx5.go
View file @
4a60e469
...
@@ -396,9 +396,8 @@ func (d *ESX5Driver) upload(dst, src string) error {
...
@@ -396,9 +396,8 @@ func (d *ESX5Driver) upload(dst, src string) error {
}
}
func
(
d
*
ESX5Driver
)
verifyChecksum
(
ctype
string
,
hash
string
,
file
string
)
bool
{
func
(
d
*
ESX5Driver
)
verifyChecksum
(
ctype
string
,
hash
string
,
file
string
)
bool
{
if
(
ctype
==
"none"
)
{
if
ctype
==
"none"
{
err
:=
d
.
sh
(
"stat"
,
file
)
if
err
:=
d
.
sh
(
"stat"
,
file
);
err
!=
nil
{
if
err
!=
nil
{
return
false
return
false
}
}
}
else
{
}
else
{
...
@@ -408,6 +407,7 @@ func (d *ESX5Driver) verifyChecksum(ctype string, hash string, file string) bool
...
@@ -408,6 +407,7 @@ func (d *ESX5Driver) verifyChecksum(ctype string, hash string, file string) bool
return
false
return
false
}
}
}
}
return
true
return
true
}
}
...
...
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