mirror of
https://github.com/containers/podman.git
synced 2025-11-13 01:29:06 +08:00
Make sure buildah uses the new network stack. Signed-off-by: Paul Holzinger <pholzing@redhat.com>
19 lines
325 B
Go
19 lines
325 B
Go
// +build !linux
|
|
|
|
package buildah
|
|
|
|
import (
|
|
"github.com/opencontainers/runtime-tools/generate"
|
|
)
|
|
|
|
func selinuxGetEnabled() bool {
|
|
return false
|
|
}
|
|
|
|
func setupSelinux(g *generate.Generator, processLabel, mountLabel string) {
|
|
}
|
|
|
|
func runLabelStdioPipes(stdioPipe [][]int, processLabel, mountLabel string) error {
|
|
return nil
|
|
}
|