From 0f84938403622ae5154b138ddbcccc3558ba0ac0 Mon Sep 17 00:00:00 2001 From: Rodrigo Campos Date: Thu, 18 Mar 2021 17:29:02 +0100 Subject: [PATCH] schema/defs-linux: Fix inconsistencies with seccomp notify Commit "Add Seccomp Notify support" (58798e75e9803d99bff5837ff39e9afe2e2efec8) just added SECCOMP_FILTER_FLAG_NEW_LISTENER to the schema and not to the list of flags in config-linux.md. However, it was a mistake to add them to the schema, as the user will never really need to specify that flag. Signed-off-by: Rodrigo Campos --- schema/defs-linux.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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": {