File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -31,13 +31,15 @@ var namespaceMapping = map[specs.LinuxNamespaceType]configs.NamespaceType{
3131}
3232
3333var mountPropagationMapping = map [string ]int {
34- "rprivate" : unix .MS_PRIVATE | unix .MS_REC ,
35- "private" : unix .MS_PRIVATE ,
36- "rslave" : unix .MS_SLAVE | unix .MS_REC ,
37- "slave" : unix .MS_SLAVE ,
38- "rshared" : unix .MS_SHARED | unix .MS_REC ,
39- "shared" : unix .MS_SHARED ,
40- "" : 0 ,
34+ "rprivate" : unix .MS_PRIVATE | unix .MS_REC ,
35+ "private" : unix .MS_PRIVATE ,
36+ "rslave" : unix .MS_SLAVE | unix .MS_REC ,
37+ "slave" : unix .MS_SLAVE ,
38+ "rshared" : unix .MS_SHARED | unix .MS_REC ,
39+ "shared" : unix .MS_SHARED ,
40+ "runbindable" : unix .MS_UNBINDABLE | unix .MS_REC ,
41+ "unbindable" : unix .MS_UNBINDABLE ,
42+ "" : 0 ,
4143}
4244
4345var allowedDevices = []* configs.Device {
You can’t perform that action at this time.
0 commit comments