mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #31966 from runcom/seccomp-clock-settime
profiles: seccomp: allow clock_settime when CAP_SYS_TIME is added
This commit is contained in:
commit
fd3aef5ec2
2 changed files with 3 additions and 1 deletions
|
@ -900,7 +900,8 @@
|
|||
"names": [
|
||||
"settimeofday",
|
||||
"stime",
|
||||
"adjtimex"
|
||||
"adjtimex",
|
||||
"clock_settime"
|
||||
],
|
||||
"action": "SCMP_ACT_ALLOW",
|
||||
"args": [],
|
||||
|
|
|
@ -735,6 +735,7 @@ func DefaultProfile() *types.Seccomp {
|
|||
"settimeofday",
|
||||
"stime",
|
||||
"adjtimex",
|
||||
"clock_settime",
|
||||
},
|
||||
Action: types.ActAllow,
|
||||
Args: []*types.Arg{},
|
||||
|
|
Loading…
Reference in a new issue