Files
podman/vendor/github.com/containers/buildah/chroot/seccomp_unsupported.go
Paul Holzinger eb28a1c084 update buildah and c/common to latest
also includes bumps for c/storage and c/image

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2022-09-09 11:58:20 +02:00

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
}