Merge pull request #1598 from euank/ragent

libcontainer: default mount propagation correctly
This commit is contained in:
Qiang Huang 2017-09-25 11:55:29 +08:00 committed by GitHub
commit 79ad714374
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ var mountPropagationMapping = map[string]int{
"slave": unix.MS_SLAVE,
"rshared": unix.MS_SHARED | unix.MS_REC,
"shared": unix.MS_SHARED,
"": unix.MS_PRIVATE | unix.MS_REC,
"": 0,
}
var allowedDevices = []*configs.Device{