summaryrefslogtreecommitdiff
path: root/buildstream/sandbox/sandbox.py
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2018-02-07 16:36:25 +0100
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-02-22 22:47:20 +0900
commit11f2de77287ff06d60b88452aa125a37de375030 (patch)
tree4433c429b0712a21b235a58d0b02fc0136545d6d /buildstream/sandbox/sandbox.py
parentb2197bc2aa7300ec9663686ce767aa02d78bbb99 (diff)
downloadbuildstream-11f2de77287ff06d60b88452aa125a37de375030.tar.gz
Inherit user id and group id for bst shell
This allows D-Bus access. Fixes #227
Diffstat (limited to 'buildstream/sandbox/sandbox.py')
-rw-r--r--buildstream/sandbox/sandbox.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/buildstream/sandbox/sandbox.py b/buildstream/sandbox/sandbox.py
index bc080e30d..9f0a58628 100644
--- a/buildstream/sandbox/sandbox.py
+++ b/buildstream/sandbox/sandbox.py
@@ -61,6 +61,15 @@ class SandboxFlags():
the terminal entirely.
"""
+ INHERIT_UID = 0x08
+ """Whether to use the user id and group id from the host environment
+
+ This determines if processes in the sandbox should run with the
+ same user id and group id as BuildStream itself. By default,
+ processes run with user id and group id 0, protected by a user
+ namespace where available.
+ """
+
class Sandbox():
"""Sandbox()