Files
podman/vendor/github.com/containers/buildah/chroot/seccomp_freebsd.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

15 lines
225 B
Go

//go:build freebsd && seccomp
package chroot
import (
"github.com/opencontainers/runtime-spec/specs-go"
)
const seccompAvailable = false
func setSeccomp(spec *specs.Spec) error {
// Ignore this on FreeBSD
return nil
}