
Bump all transitive and direct dependencies. Signed-off-by: Casey Callendrello <c1@caseyc.net>
14 lines
304 B
Go
14 lines
304 B
Go
/*
|
|
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
|