build-fhs-userenv: Propagate $XAUTHORITY

The `DISPLAY` environment variable is propagated into chroots built with
`buildFHSUserEnv`, but currently the `XAUTHORITY` variable is not. When
the latter is set, its value is usually necessary in order to connect to
the X server identified by the former.

This matters for users running gdm3, for example, who have `XAUTHORITY`
set to something like `/run/user/1000/gdm/Xauthority` instead of the X
default of `~/.Xauthority`, which doesn't exist in that setup.

Fixes #21532.
This commit is contained in:
Jamey Sharp 2017-07-17 23:53:31 -07:00
parent f59e71e9c7
commit 09bae7cb70

View file

@ -16,6 +16,7 @@ mounts = { '/' => 'host',
# Propagate environment variables
envvars = [ 'TERM',
'DISPLAY',
'XAUTHORITY',
'HOME',
'XDG_RUNTIME_DIR',
'LANG',