From 3f13f9159f27ce2859ee64443a3eaf9be1351b01 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 16 Jul 2020 09:26:55 +0200 Subject: [PATCH] man: configuration files contain assignments, no directories --- man/environment.d.xml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/man/environment.d.xml b/man/environment.d.xml index b7b0dcaa82..0f53b0fef1 100644 --- a/man/environment.d.xml +++ b/man/environment.d.xml @@ -36,8 +36,8 @@ Description - The environment.d directories contain a list of environment variable - assignments for services started by the systemd user instance. + Configuration files in the environment.d/ directories contain lists of + environment variable assignments for services started by the systemd user instance. systemd-environment-d-generator8 parses them and updates the environment exported by the systemd user instance. See below for an discussion of which processes inherit those variables. @@ -58,7 +58,6 @@ variable assignments, separated by newlines. The right hand side of these assignments may reference previously defined environment variables, using the ${OTHER_KEY} and $OTHER_KEY format. It is also possible to use - ${FOO:-DEFAULT_VALUE} to expand in the same way as ${FOO} unless the expansion would be empty, in which case it expands to DEFAULT_VALUE,