1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/profiles/seccomp/seccomp_unsupported.go
Jessica Frazelle d57816de02
add default seccomp profile as json
profile is created by go generate

Signed-off-by: Jessica Frazelle <acidburn@docker.com>
2016-02-08 08:19:21 -08:00

10 lines
206 B
Go

// +build linux,!seccomp
package seccomp
import "github.com/opencontainers/runc/libcontainer/configs"
var (
// defaultProfile is a nil pointer on unsupported systems.
defaultProfile *configs.Seccomp
)