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 c85581c commit 80a7ca2Copy full SHA for 80a7ca2
components/ws-daemon/seccomp-profile-installer/main.go
@@ -39,6 +39,7 @@ func main() {
39
"setdomainname",
40
"sethostname",
41
"unshare",
42
+ "keyctl",
43
},
44
Action: specs.ActAllow,
45
@@ -54,14 +55,6 @@ func main() {
54
55
Names: []string{"setns"},
56
57
- specs.LinuxSyscall{
58
- Names: []string{
59
- "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