summaryrefslogtreecommitdiffstats
path: root/chroot/seccomp_freebsd.go
blob: 90e9f14cbc78f36731e333a77641af37c6675426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//go:build freebsd && seccomp
// +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
}