Skip to content

Commit

Permalink
Merge pull request #20981 from justincormack/seccomp_ipc
Browse files Browse the repository at this point in the history
Add ipc syscall to default seccomp profile
  • Loading branch information
Jess Frazelle committed Mar 5, 2016
2 parents beb17c0 + 31410a6 commit 91cafaa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions profiles/seccomp/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -593,6 +593,11 @@
"action": "SCMP_ACT_ALLOW",
"args": []
},
{
"name": "ipc",
"action": "SCMP_ACT_ALLOW",
"args": []
},
{
"name": "kill",
"action": "SCMP_ACT_ALLOW",
Expand Down
5 changes: 5 additions & 0 deletions profiles/seccomp/seccomp_default.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 91cafaa

Please sign in to comment.