mirror of
https://github.com/moby/moby.git
synced 2026-01-11 10:41:43 +00:00
rewrite the tests to use a minimal runtime-spec Spec instead Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
24 lines
401 B
JSON
24 lines
401 B
JSON
{
|
|
"defaultAction": "SCMP_ACT_ERRNO",
|
|
"syscalls": [
|
|
{
|
|
"names": ["chmod"],
|
|
"action": "SCMP_ACT_ALLOW"
|
|
},
|
|
{
|
|
"names": ["syslog"],
|
|
"action": "SCMP_ACT_ALLOW",
|
|
"includes": {
|
|
"caps": ["CAP_SYSLOG"]
|
|
}
|
|
},
|
|
{
|
|
"names": ["ptrace"],
|
|
"action": "SCMP_ACT_ALLOW",
|
|
"excludes": {
|
|
"caps": ["CAP_SYS_ADMIN"]
|
|
}
|
|
}
|
|
]
|
|
}
|