mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
22186d2645
full diff: - https://github.com/opencontainers/selinux/compare/v1.8.0...v1.8.2 - https://github.com/bits-and-blooms/bitset/compare/v1.1.11...v1.2.0 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
14 lines
305 B
Go
14 lines
305 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
|