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

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