mirror of
https://github.com/containers/podman.git
synced 2025-11-30 10:07:33 +08:00
15 lines
225 B
Go
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
|
|
}
|