We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8a67cc commit 13f5a6aCopy full SHA for 13f5a6a
components/ws-daemon/seccomp-profile-installer/main.go
@@ -39,6 +39,9 @@ func main() {
39
"setdomainname",
40
"sethostname",
41
"unshare",
42
+ "keyctl",
43
+ "add_key",
44
+ "request_key",
45
},
46
Action: specs.ActAllow,
47
@@ -54,14 +57,6 @@ func main() {
54
57
Names: []string{"setns"},
55
58
56
59
- specs.LinuxSyscall{
- Names: []string{
- "keyctl",
60
- },
61
- // prevent call and return ENOSYS to make runc happy
62
- // (see https://github.com/opencontainers/runc/issues/1889)
63
- Action: specs.ActTrace,
64
65
)
66
67
err := enc.Encode(s)
0 commit comments