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 b6c2259 commit 57f954dCopy full SHA for 57f954d
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
@@ -12,6 +12,7 @@ class Capabilities(StrEnum):
12
"""Linux Capabilities."""
13
14
BPF = "BPF"
15
+ CHECKPOINT_RESTORE = "CHECKPOINT_RESTORE"
16
DAC_READ_SEARCH = "DAC_READ_SEARCH"
17
IPC_LOCK = "IPC_LOCK"
18
NET_ADMIN = "NET_ADMIN"
0 commit comments