1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

fix default profile where unsupported

Signed-off-by: Jessica Frazelle <acidburn@docker.com>
This commit is contained in:
Jessica Frazelle 2015-12-28 19:24:44 -08:00
parent 78ce43bad8
commit 94b45310f4
No known key found for this signature in database
GPG key ID: 18F3685C0022BFF3
2 changed files with 10 additions and 1 deletions

View file

@ -1,4 +1,4 @@
// +build linux
// +build linux,seccomp
package native

View file

@ -0,0 +1,9 @@
// +build linux,!seccomp
package native
import "github.com/opencontainers/runc/libcontainer/configs"
var (
defaultSeccompProfile *configs.Seccomp
)