Merge pull request #1312 from runcom/fix-selinux-labels

libcontainer: selinux: fix DupSecOpt and DisableSecOpt
This commit is contained in:
Mrunal Patel 2017-02-06 10:33:42 -08:00 committed by GitHub
commit b263a43430
1 changed files with 5 additions and 5 deletions

View File

@ -536,14 +536,14 @@ func DupSecOpt(src string) []string {
con["level"] == "" {
return nil
}
return []string{"label=user:" + con["user"],
"label=role:" + con["role"],
"label=type:" + con["type"],
"label=level:" + con["level"]}
return []string{"user:" + con["user"],
"role:" + con["role"],
"type:" + con["type"],
"level:" + con["level"]}
}
// DisableSecOpt returns a security opt that can be used to disabling SELinux
// labeling support for future container processes
func DisableSecOpt() []string {
return []string{"label=disable"}
return []string{"disable"}
}