diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-11-08 06:22:59 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-08 06:22:59 -0800 |
commit | 85dbfb33f4c20ca75c86abd687fe0f8a31ce080e (patch) | |
tree | 30dac30954c1c789f3735396d789f849f365a46a | |
parent | 672f572f507400a87c63b34fad137f321ded040d (diff) | |
parent | 19faaba94592bb8087ec68569398236af6654ef3 (diff) | |
download | podman-85dbfb33f4c20ca75c86abd687fe0f8a31ce080e.tar.gz podman-85dbfb33f4c20ca75c86abd687fe0f8a31ce080e.tar.bz2 podman-85dbfb33f4c20ca75c86abd687fe0f8a31ce080e.zip |
Merge pull request #1778 from vrothberg/update-seccomp
update seccomp.json
-rw-r--r-- | seccomp.json | 33 |
1 files changed, 32 insertions, 1 deletions
diff --git a/seccomp.json b/seccomp.json index 19fadb4bb..fd0681a86 100644 --- a/seccomp.json +++ b/seccomp.json @@ -322,13 +322,13 @@ "stat64", "statfs", "statfs64", + "statx", "symlink", "symlinkat", "sync", "sync_file_range", "syncfs", "sysinfo", - "syslog", "tee", "tgkill", "time", @@ -565,6 +565,7 @@ "setdomainname", "sethostname", "setns", + "syslog", "umount", "umount2", "unshare" @@ -750,6 +751,36 @@ ] }, "excludes": {} + }, + { + "names": [ + "get_mempolicy", + "mbind", + "set_mempolicy" + ], + "action": "SCMP_ACT_ALLOW", + "args": [], + "comment": "", + "includes": { + "caps": [ + "CAP_SYS_NICE" + ] + }, + "excludes": {} + }, + { + "names": [ + "syslog" + ], + "action": "SCMP_ACT_ALLOW", + "args": [], + "comment": "", + "includes": { + "caps": [ + "CAP_SYSLOG" + ] + }, + "excludes": {} } ] } |