mirror of
https://github.com/containers/podman.git
synced 2025-12-11 17:27:19 +08:00
15 lines
235 B
Go
15 lines
235 B
Go
// +build !selinux !linux
|
|
|
|
package buildah
|
|
|
|
import (
|
|
"github.com/opencontainers/runtime-tools/generate"
|
|
)
|
|
|
|
func selinuxGetEnabled() bool {
|
|
return false
|
|
}
|
|
|
|
func setupSelinux(g *generate.Generator, processLabel, mountLabel string) {
|
|
}
|