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 fefb835 commit 6d8e3adCopy full SHA for 6d8e3ad
supervisor/addons/utils.py
@@ -46,6 +46,7 @@ def rating_security(addon: AddonModel) -> int:
46
privilege in addon.privileged
47
for privilege in (
48
Capabilities.BPF,
49
+ Capabilities.CHECKPOINT_RESTORE,
50
Capabilities.DAC_READ_SEARCH,
51
Capabilities.NET_ADMIN,
52
Capabilities.NET_RAW,
supervisor/docker/const.py
@@ -11,6 +11,7 @@ class Capabilities(StrEnum):
11
"""Linux Capabilities."""
12
13
BPF = "BPF"
14
+ CHECKPOINT_RESTORE = "CHECKPOINT_RESTORE"
15
DAC_READ_SEARCH = "DAC_READ_SEARCH"
16
IPC_LOCK = "IPC_LOCK"
17
NET_ADMIN = "NET_ADMIN"
0 commit comments