diff --git a/profiles/seccomp/default.json b/profiles/seccomp/default.json index 5b742da0d..01ff1a4c5 100755 --- a/profiles/seccomp/default.json +++ b/profiles/seccomp/default.json @@ -900,7 +900,8 @@ "names": [ "settimeofday", "stime", - "adjtimex" + "adjtimex", + "clock_settime" ], "action": "SCMP_ACT_ALLOW", "args": [], diff --git a/profiles/seccomp/seccomp_default.go b/profiles/seccomp/seccomp_default.go index b68834a12..42bc3baa4 100644 --- a/profiles/seccomp/seccomp_default.go +++ b/profiles/seccomp/seccomp_default.go @@ -735,6 +735,7 @@ func DefaultProfile() *types.Seccomp { "settimeofday", "stime", "adjtimex", + "clock_settime", }, Action: types.ActAllow, Args: []*types.Arg{},