Skip to content

Commit 79ad714

Browse files
authored
Merge pull request #1598 from euank/ragent
libcontainer: default mount propagation correctly
2 parents e385f67 + 4301b44 commit 79ad714

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcontainer/specconv/spec_linux.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var mountPropagationMapping = map[string]int{
3737
"slave": unix.MS_SLAVE,
3838
"rshared": unix.MS_SHARED | unix.MS_REC,
3939
"shared": unix.MS_SHARED,
40-
"": unix.MS_PRIVATE | unix.MS_REC,
40+
"": 0,
4141
}
4242

4343
var allowedDevices = []*configs.Device{

0 commit comments

Comments
 (0)