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
6211cd20
Commit
6211cd20
authored
Dec 06, 2013
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
builder/vmware: more resilient to racing deletes [GH-675]
parent
b79506e6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
CHANGELOG.md
CHANGELOG.md
+2
-0
builder/vmware/step_clean_files.go
builder/vmware/step_clean_files.go
+6
-2
No files found.
CHANGELOG.md
View file @
6211cd20
...
@@ -18,6 +18,8 @@ BUG FIXES:
...
@@ -18,6 +18,8 @@ BUG FIXES:
so that building AMIs works out of us-east-1 [GH-679]
so that building AMIs works out of us-east-1 [GH-679]
*
builder/vmware: Cleanup of VMX keys works properly so cd-rom won't
*
builder/vmware: Cleanup of VMX keys works properly so cd-rom won't
get stuck with ISO. [GH-685]
get stuck with ISO. [GH-685]
*
builder/vmware: File cleanup is more resilient to file delete races
with the operating system. [GH-675]
## 0.4.0 (November 19, 2013)
## 0.4.0 (November 19, 2013)
...
...
builder/vmware/step_clean_files.go
View file @
6211cd20
...
@@ -4,6 +4,7 @@ import (
...
@@ -4,6 +4,7 @@ import (
"fmt"
"fmt"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer"
"os"
"path/filepath"
"path/filepath"
)
)
...
@@ -48,8 +49,11 @@ func (stepCleanFiles) Run(state multistep.StateBag) multistep.StepAction {
...
@@ -48,8 +49,11 @@ func (stepCleanFiles) Run(state multistep.StateBag) multistep.StepAction {
if
!
keep
{
if
!
keep
{
ui
.
Message
(
fmt
.
Sprintf
(
"Deleting: %s"
,
path
))
ui
.
Message
(
fmt
.
Sprintf
(
"Deleting: %s"
,
path
))
if
err
=
dir
.
Remove
(
path
);
err
!=
nil
{
if
err
=
dir
.
Remove
(
path
);
err
!=
nil
{
state
.
Put
(
"error"
,
err
)
// Only report the error if the file still exists
return
multistep
.
ActionHalt
if
_
,
serr
:=
os
.
Stat
(
path
);
serr
==
nil
||
os
.
IsNotExist
(
serr
)
{
state
.
Put
(
"error"
,
err
)
return
multistep
.
ActionHalt
}
}
}
}
}
}
}
...
...
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