10 lines
153 B
Go
10 lines
153 B
Go
|
// +build linux
|
||
|
|
||
|
package lib
|
||
|
|
||
|
import selinux "github.com/opencontainers/selinux/go-selinux"
|
||
|
|
||
|
func selinuxEnabled() bool {
|
||
|
return selinux.GetEnabled()
|
||
|
}
|