mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 00:15:44 +00:00
This PR reflects the upstream change of moving the buildah module from github.com/containers/buildah to go.podman.io/buildah. Signed-off-by: Brent Baude <bbaude@redhat.com>
14 lines
225 B
Go
14 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
|
|
}
|