Files
docker-cli/components/engine/daemon/selinux_linux.go
Sebastiaan van Stijn fd08bae89c Remove redundant build-tags
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
2017-12-18 17:41:53 +01:00

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()
}