Merge pull request #18947 from jfrazelle/fix-seccomp-unsupported

fix default profile where unsupported
Upstream-commit: 94e076086820aa34e6fc4fadb18714cd8b9263df
Component: engine
This commit is contained in:
Arnaud Porterie
2015-12-29 10:21:07 -08:00
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
)