Files
podman/vendor/github.com/containers/buildah/selinux_unsupported.go
Paul Holzinger 83a0299309 vendor: update buildah to latest
Includes a fix for CVE-2024-9407

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2024-10-02 18:04:39 +02: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
}