diff --git a/schema/defs-linux.json b/schema/defs-linux.json index a99bd7488..5727802ab 100644 --- a/schema/defs-linux.json +++ b/schema/defs-linux.json @@ -70,8 +70,7 @@ "enum": [ "SECCOMP_FILTER_FLAG_TSYNC", "SECCOMP_FILTER_FLAG_LOG", - "SECCOMP_FILTER_FLAG_SPEC_ALLOW", - "SECCOMP_FILTER_FLAG_NEW_LISTENER" + "SECCOMP_FILTER_FLAG_SPEC_ALLOW" ] }, "SeccompOperators": { diff --git a/specs-go/config.go b/specs-go/config.go index df1f43214..6a7a91e55 100644 --- a/specs-go/config.go +++ b/specs-go/config.go @@ -650,6 +650,7 @@ const ( ActTrace LinuxSeccompAction = "SCMP_ACT_TRACE" ActAllow LinuxSeccompAction = "SCMP_ACT_ALLOW" ActLog LinuxSeccompAction = "SCMP_ACT_LOG" + ActNotify LinuxSeccompAction = "SCMP_ACT_NOTIFY" ) // LinuxSeccompOperator used to match syscall arguments in Seccomp