summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-03-06 20:22:02 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-03-06 20:22:02 +0900
commitf8a71cabb009e04dc8deee8c1244ab75e06420a2 (patch)
treea2d9dc4904e1d2a749b11c015b332f7dbba085b7
parent7ed0351a4e15ae6d8fd4d79dded5e9a45548d238 (diff)
downloadbuildstream-f8a71cabb009e04dc8deee8c1244ab75e06420a2.tar.gz
doc/source/projectconf.rst: Documenting new `environment` shell configuration
And also ammend the documentation for `host-files` to note that the paths support host side environment variable expansion. Documenting both `host-files` and `environment` to require format version 4.
-rw-r--r--doc/source/projectconf.rst40
1 files changed, 38 insertions, 2 deletions
diff --git a/doc/source/projectconf.rst b/doc/source/projectconf.rst
index bfe416015..156efdb36 100644
--- a/doc/source/projectconf.rst
+++ b/doc/source/projectconf.rst
@@ -161,6 +161,8 @@ ensure that the customized prompt is not overwritten:
command: [ 'bash', '--noprofile', '--norc', '-i' ]
+.. _project_shell_env_inherit:
+
Environment Inheritance
~~~~~~~~~~~~~~~~~~~~~~~
In order to cooperate with your host environment, a debugging shell
@@ -180,6 +182,30 @@ environments with debugging shells for your project, specify the following:
- DBUS_SESSION_BUS_ADDRESS
+Environment Assignments
+~~~~~~~~~~~~~~~~~~~~~~~
+In addition to :ref:`simple environment inheritance <project_shell_env_inherit>`
+it is also possible to explicitly set environment variables using the ``environment``
+shell configuration.
+
+.. note::
+
+ The ``environment`` configuration is available since :ref:`format version 4 <project_format_version>`
+
+Host side environment variable expansion is also supported in
+the values specified in the ``environment`` dictionary. This can be
+useful for more complex configurations where the shell environment
+needs more explicit setup, example:
+
+.. code:: yaml
+
+ shell:
+
+ # Set some environment variables explicitly
+ environment:
+ PULSE_SERVER: 'unix:${XDG_RUNTIME_DIR}/pulse/native'
+
+
Host Files
~~~~~~~~~~
It can be useful to share some files on the host with a shell so that
@@ -188,6 +214,10 @@ it can integrate better with the host environment.
The ``host-files`` configuration allows one to specify files and
directories on the host to be bind mounted into the sandbox.
+.. note::
+
+ The ``host-files`` configuration is available since :ref:`format version 4 <project_format_version>`
+
.. warning::
One should never mount directories where one expects to
@@ -252,10 +282,16 @@ Here is an example of using *shorthand mount specifications*:
- '/etc/group'
- '/etc/resolv.conf'
+Host side environment variable expansion is also supported:
-.. note::
+.. code:: yaml
- The ``host-files`` configuration is available since :ref:`format version 3 <project_format_version>`
+ shell:
+
+ # Mount a host side pulseaudio server socket into
+ # the shell environment at the same location.
+ host-files:
+ - '${XDG_RUNTIME_DIR}/pulse/native'
.. _project_plugins: