mirror of
https://github.com/containers/podman.git
synced 2025-12-02 02:58:03 +08:00
also includes bumps for c/storage and c/image Signed-off-by: Paul Holzinger <pholzing@redhat.com>
26 lines
539 B
Go
26 lines
539 B
Go
//go:build (!linux && !freebsd) || !seccomp
|
|
// +build !linux,!freebsd !seccomp
|
|
|
|
package chroot
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/opencontainers/runtime-spec/specs-go"
|
|
)
|
|
|
|
func setSeccomp(spec *specs.Spec) error {
|
|
if spec.Linux.Seccomp != nil {
|
|
return errors.New("configured a seccomp filter without seccomp support?")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func setupSeccomp(spec *specs.Spec, seccompProfilePath string) error {
|
|
if spec.Linux != nil {
|
|
// runtime-tools may have supplied us with a default filter
|
|
spec.Linux.Seccomp = nil
|
|
}
|
|
return nil
|
|
}
|