summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2018-11-25 21:17:08 +0100
committerJürg Billeter <j@bitron.ch>2018-11-27 13:41:09 +0000
commit85f5b574036723896a3c14313afd9eff86c6a12b (patch)
treeab4b217a9bbbc3add0ffad954a5d00ecbad89372
parent38d16c6208c6cfe4493763f60d259a3623c0ccbf (diff)
downloadbuildstream-85f5b574036723896a3c14313afd9eff86c6a12b.tar.gz
sandbox/sandbox.py: Add SandboxFlags.NONE
This improves readability.
-rw-r--r--buildstream/sandbox/sandbox.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/buildstream/sandbox/sandbox.py b/buildstream/sandbox/sandbox.py
index a7b03f31a..7bca70e87 100644
--- a/buildstream/sandbox/sandbox.py
+++ b/buildstream/sandbox/sandbox.py
@@ -38,6 +38,10 @@ class SandboxFlags():
"""Flags indicating how the sandbox should be run.
"""
+ NONE = 0
+ """Use default sandbox configuration.
+ """
+
ROOT_READ_ONLY = 0x01
"""The root filesystem is read only.