cri-o/cmd/crio/selinux_unsupported.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 "github.com/sirupsen/logrus"
func disableSELinux() {
logrus.Infof("there is no selinux to disable")
}