mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
d57816de02
profile is created by go generate Signed-off-by: Jessica Frazelle <acidburn@docker.com>
10 lines
206 B
Go
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
|
|
)
|