cri-o/cmd/crio/selinux_linux.go
Vincent Batts 23ff4427e2
crio: abstract the selinux call
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2018-02-27 16:14:51 -05:00

9 lines
143 B
Go

// +build linux
package main
import selinux "github.com/opencontainers/selinux/go-selinux"
func disableSELinux() {
selinux.SetDisabled()
}