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

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",