From 822c4f79ab5c84d48bbdd5534cdfd98990cdcee7 Mon Sep 17 00:00:00 2001 From: Justin Cormack Date: Tue, 5 Jan 2016 15:29:59 +0000 Subject: [PATCH] Allow the waitpid syscall This version is sometimes used eg by glibc on x86 Signed-off-by: Justin Cormack --- daemon/execdriver/native/seccomp_default.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/daemon/execdriver/native/seccomp_default.go b/daemon/execdriver/native/seccomp_default.go index 28e715b9e3..d8dfafde9b 100644 --- a/daemon/execdriver/native/seccomp_default.go +++ b/daemon/execdriver/native/seccomp_default.go @@ -1549,6 +1549,11 @@ var defaultSeccompProfile = &configs.Seccomp{ Action: configs.Allow, Args: []*configs.Arg{}, }, + { + Name: "waitpid", + Action: configs.Allow, + Args: []*configs.Arg{}, + }, { Name: "write", Action: configs.Allow,