mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f9daecc880
Signed-off-by: Alexander Morozov <lk4d4@docker.com>
17 lines
292 B
Go
17 lines
292 B
Go
// +build linux
|
|
|
|
package daemon
|
|
|
|
import "github.com/opencontainers/runc/libcontainer/selinux"
|
|
|
|
func selinuxSetDisabled() {
|
|
selinux.SetDisabled()
|
|
}
|
|
|
|
func selinuxFreeLxcContexts(label string) {
|
|
selinux.FreeLxcContexts(label)
|
|
}
|
|
|
|
func selinuxEnabled() bool {
|
|
return selinux.SelinuxEnabled()
|
|
}
|