podman-build/vendor/github.com/containers/buildah/selinux_unsupported.go
2025-10-11 12:30:35 +09:00

19 lines
326 B
Go

//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
}