aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/sandbox/const.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-03-13 20:59:03 +0900
committerOphestra <cat@gensokyo.uk>2025-03-13 21:36:26 +0900
commit9b1a60b5c9f7a92abb632639117d61c5cbaf74f7 (patch)
tree0fa6b8dae30a9a687f0e465c7d0fc5e0f24b48b1 /internal/sandbox/const.go
parentbeb3918809f0743e2275f6a3f358f622cea73d6b (diff)
sandbox: native container tooling
This should eventually replace bwrap. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/sandbox/const.go')
-rw-r--r--internal/sandbox/const.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/internal/sandbox/const.go b/internal/sandbox/const.go
new file mode 100644
index 00000000..afced969
--- /dev/null
+++ b/internal/sandbox/const.go
@@ -0,0 +1,6 @@
+package sandbox
+
+const (
+ PR_SET_NO_NEW_PRIVS = 0x26
+ CAP_SYS_ADMIN = 0x15
+)