1 /* 2 Package selinux provides a high-level interface for interacting with selinux. 3 4 Usage: 5 6 import "github.com/opencontainers/selinux/go-selinux" 7 8 // Ensure that selinux is enforcing mode. 9 if selinux.EnforceMode() != selinux.Enforcing { 10 selinux.SetEnforceMode(selinux.Enforcing) 11 } 12 */ 13 package selinux 14