From c8d3965da88dcf07a313973b58337aa9b2de5506 Mon Sep 17 00:00:00 2001 From: yu-i-i Date: Sat, 3 May 2025 03:20:14 +0200 Subject: [PATCH] Add 'poll' to clsi seccomp profile, fixes minted. Thanks, David. --- services/clsi/seccomp/clsi-profile.json | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/services/clsi/seccomp/clsi-profile.json b/services/clsi/seccomp/clsi-profile.json index c78027b15e..528cd70703 100644 --- a/services/clsi/seccomp/clsi-profile.json +++ b/services/clsi/seccomp/clsi-profile.json @@ -844,13 +844,19 @@ "args": [] }, { - "name": "gettimeofday", - "action": "SCMP_ACT_ALLOW", - "args": [] - }, { - "name": "epoll_pwait", - "action": "SCMP_ACT_ALLOW", - "args": [] + "name": "gettimeofday", + "action": "SCMP_ACT_ALLOW", + "args": [] + }, + { + "name": "epoll_pwait", + "action": "SCMP_ACT_ALLOW", + "args": [] + }, + { + "name": "poll", + "action": "SCMP_ACT_ALLOW", + "args": [] } ] }