Files that are suffixed with `_linux.go` or `_windows.go` are already only built on Linux / Windows, so these build-tags were redundant. Signed-off-by: Sebastiaan van Stijn <github@gone.nl> Upstream-commit: 6ed1163c98703f8dd0693cecbadc84d2cda811c3 Component: engine
16 lines
261 B
Go
16 lines
261 B
Go
package daemon
|
|
|
|
import "github.com/opencontainers/selinux/go-selinux"
|
|
|
|
func selinuxSetDisabled() {
|
|
selinux.SetDisabled()
|
|
}
|
|
|
|
func selinuxFreeLxcContexts(label string) {
|
|
selinux.ReleaseLabel(label)
|
|
}
|
|
|
|
func selinuxEnabled() bool {
|
|
return selinux.GetEnabled()
|
|
}
|