mirror of
https://github.com/docker/docs.git
synced 2026-03-29 07:18:51 +07:00
Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@docker.com> (github: crosbymichael)
14 lines
214 B
Go
14 lines
214 B
Go
// +build linux
|
|
|
|
package daemon
|
|
|
|
import "github.com/docker/libcontainer/selinux"
|
|
|
|
func selinuxSetDisabled() {
|
|
selinux.SetDisabled()
|
|
}
|
|
|
|
func selinuxFreeLxcContexts(label string) {
|
|
selinux.FreeLxcContexts(label)
|
|
}
|