We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66f4ffa commit 2b844a0Copy full SHA for 2b844a0
schema/defs-linux.json
@@ -39,7 +39,8 @@
39
"SCMP_ACT_TRAP",
40
"SCMP_ACT_ERRNO",
41
"SCMP_ACT_TRACE",
42
- "SCMP_ACT_ALLOW"
+ "SCMP_ACT_ALLOW",
43
+ "SCMP_ACT_LOG"
44
]
45
},
46
"SeccompFlag": {
specs-go/config.go
@@ -599,6 +599,7 @@ const (
599
ActErrno LinuxSeccompAction = "SCMP_ACT_ERRNO"
600
ActTrace LinuxSeccompAction = "SCMP_ACT_TRACE"
601
ActAllow LinuxSeccompAction = "SCMP_ACT_ALLOW"
602
+ ActLog LinuxSeccompAction = "SCMP_ACT_LOG"
603
)
604
605
// LinuxSeccompOperator used to match syscall arguments in Seccomp
0 commit comments