Merge pull request #20981 from justincormack/seccomp_ipc
Add ipc syscall to default seccomp profile
This commit is contained in:
commit
91cafaadac
2 changed files with 10 additions and 0 deletions
|
@ -593,6 +593,11 @@
|
|||
"action": "SCMP_ACT_ALLOW",
|
||||
"args": []
|
||||
},
|
||||
{
|
||||
"name": "ipc",
|
||||
"action": "SCMP_ACT_ALLOW",
|
||||
"args": []
|
||||
},
|
||||
{
|
||||
"name": "kill",
|
||||
"action": "SCMP_ACT_ALLOW",
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue