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