Vendor in latest go-selinux

This should fix the issue with iptables being denied execution on
container cleanup

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>

Closes: #966
Approved by: mheon
This commit is contained in:
Daniel J Walsh
2018-06-19 10:41:49 -04:00
committed by Atomic Bot
parent 4ab054073d
commit aa1ccfb094
3 changed files with 208 additions and 83 deletions

View File

@ -87,9 +87,6 @@ func FormatMountLabel(src, mountLabel string) string {
// SetProcessLabel takes a process label and tells the kernel to assign the
// label to the next program executed by the current process.
func SetProcessLabel(processLabel string) error {
if processLabel == "" {
return nil
}
return selinux.SetExecLabel(processLabel)
}