Skip to content

Commit 87d1118

Browse files
Merge pull request #2605 from lifubang/runafterstart
fix delete running bundle dir when ctr t start a container again
2 parents 6496078 + 557e8e0 commit 87d1118

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

runtime/v1/linux/bundle.go

+3-4
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ func newBundle(id, path, workDir string, spec []byte) (b *bundle, err error) {
4646
return nil, err
4747
}
4848
path = filepath.Join(path, id)
49+
if err := os.Mkdir(path, 0711); err != nil {
50+
return nil, err
51+
}
4952
defer func() {
5053
if err != nil {
5154
os.RemoveAll(path)
@@ -60,10 +63,6 @@ func newBundle(id, path, workDir string, spec []byte) (b *bundle, err error) {
6063
os.RemoveAll(workDir)
6164
}
6265
}()
63-
64-
if err := os.Mkdir(path, 0711); err != nil {
65-
return nil, err
66-
}
6766
if err := os.Mkdir(filepath.Join(path, "rootfs"), 0711); err != nil {
6867
return nil, err
6968
}

0 commit comments

Comments
 (0)