Merge pull request #20981 from justincormack/seccomp_ipc

Add ipc syscall to default seccomp profile
This commit is contained in:
Jess Frazelle 2016-03-05 15:29:19 -08:00
commit 91cafaadac
2 changed files with 10 additions and 0 deletions

View file

@ -593,6 +593,11 @@
"action": "SCMP_ACT_ALLOW",
"args": []
},
{
"name": "ipc",
"action": "SCMP_ACT_ALLOW",
"args": []
},
{
"name": "kill",
"action": "SCMP_ACT_ALLOW",

View file

@ -625,6 +625,11 @@ var DefaultProfile = &types.Seccomp{
Action: types.ActAllow,
Args: []*types.Arg{},
},
{
Name: "ipc",
Action: types.ActAllow,
Args: []*types.Arg{},
},
{
Name: "kill",
Action: types.ActAllow,