Skip to content

Commit 2b844a0

Browse files
committed
Add support for SCMP_ACT_LOG
Signed-off-by: Paulo Gomes <[email protected]>
1 parent 66f4ffa commit 2b844a0

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

schema/defs-linux.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@
3939
"SCMP_ACT_TRAP",
4040
"SCMP_ACT_ERRNO",
4141
"SCMP_ACT_TRACE",
42-
"SCMP_ACT_ALLOW"
42+
"SCMP_ACT_ALLOW",
43+
"SCMP_ACT_LOG"
4344
]
4445
},
4546
"SeccompFlag": {

specs-go/config.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -599,6 +599,7 @@ const (
599599
ActErrno LinuxSeccompAction = "SCMP_ACT_ERRNO"
600600
ActTrace LinuxSeccompAction = "SCMP_ACT_TRACE"
601601
ActAllow LinuxSeccompAction = "SCMP_ACT_ALLOW"
602+
ActLog LinuxSeccompAction = "SCMP_ACT_LOG"
602603
)
603604

604605
// LinuxSeccompOperator used to match syscall arguments in Seccomp

0 commit comments

Comments
 (0)