mirror of
https://github.com/containers/podman.git
synced 2025-08-06 03:19:52 +08:00

also includes bumps for c/storage and c/image Signed-off-by: Paul Holzinger <pholzing@redhat.com>
14 lines
219 B
Go
14 lines
219 B
Go
//go:build freebsd && seccomp
|
|
// +build freebsd,seccomp
|
|
|
|
package chroot
|
|
|
|
import (
|
|
"github.com/opencontainers/runtime-spec/specs-go"
|
|
)
|
|
|
|
func setSeccomp(spec *specs.Spec) error {
|
|
// Ignore this on FreeBSD
|
|
return nil
|
|
}
|