2024-08-10 07:31:56 +08:00
|
|
|
//go:build !linux
|
2018-09-05 22:44:28 +08:00
|
|
|
|
|
|
|
package buildah
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/opencontainers/runtime-tools/generate"
|
|
|
|
)
|
|
|
|
|
2019-07-25 22:10:03 +08:00
|
|
|
func selinuxGetEnabled() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2018-09-05 22:44:28 +08:00
|
|
|
func setupSelinux(g *generate.Generator, processLabel, mountLabel string) {
|
|
|
|
}
|
2021-11-16 23:56:04 +08:00
|
|
|
|
|
|
|
func runLabelStdioPipes(stdioPipe [][]int, processLabel, mountLabel string) error {
|
|
|
|
return nil
|
|
|
|
}
|