profiles: seccomp: allow clock_settime64 when CAP_SYS_TIME is added
Signed-off-by: Bastien Pascard <bpascard@hotmail.com>
This commit is contained in:
parent
d7f2e47224
commit
420142a886
2 changed files with 3 additions and 1 deletions
|
@ -743,7 +743,8 @@
|
||||||
"names": [
|
"names": [
|
||||||
"settimeofday",
|
"settimeofday",
|
||||||
"stime",
|
"stime",
|
||||||
"clock_settime"
|
"clock_settime",
|
||||||
|
"clock_settime64"
|
||||||
],
|
],
|
||||||
"action": "SCMP_ACT_ALLOW",
|
"action": "SCMP_ACT_ALLOW",
|
||||||
"includes": {
|
"includes": {
|
||||||
|
|
|
@ -731,6 +731,7 @@ func DefaultProfile() *Seccomp {
|
||||||
"settimeofday",
|
"settimeofday",
|
||||||
"stime",
|
"stime",
|
||||||
"clock_settime",
|
"clock_settime",
|
||||||
|
"clock_settime64",
|
||||||
},
|
},
|
||||||
Action: specs.ActAllow,
|
Action: specs.ActAllow,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue