Merge pull request #18961 from justincormack/clock_adjtime

Block clock_adjtime in default seccomp config
This commit is contained in:
Arnaud Porterie 2015-12-29 10:08:45 -08:00
commit 8ac3d083a8
1 changed files with 6 additions and 0 deletions

View File

@ -28,6 +28,12 @@ var defaultSeccompProfile = &configs.Seccomp{
Action: configs.Errno,
Args: []*configs.Arg{},
},
{
// Time/Date is not namespaced
Name: "clock_adjtime",
Action: configs.Errno,
Args: []*configs.Arg{},
},
{
// Time/Date is not namespaced
Name: "clock_settime",