]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
man: configuration files contain assignments, no directories 16483/head
authorLennart Poettering <lennart@poettering.net>
Thu, 16 Jul 2020 07:26:55 +0000 (09:26 +0200)
committerLennart Poettering <lennart@poettering.net>
Thu, 16 Jul 2020 07:26:55 +0000 (09:26 +0200)
man/environment.d.xml

index b7b0dcaa821a22bb024abd5bddbbafbde2686b38..0f53b0fef106780c6b58de53089c3cd155f5af69 100644 (file)
@@ -36,8 +36,8 @@
   <refsect1>
     <title>Description</title>
 
-    <para>The <filename>environment.d</filename> directories contain a list of environment variable
-    assignments for services started by the systemd user instance.
+    <para>Configuration files in the <filename>environment.d/</filename> directories contain lists of
+    environment variable assignments for services started by the systemd user instance.
     <citerefentry><refentrytitle>systemd-environment-d-generator</refentrytitle><manvolnum>8</manvolnum></citerefentry>
     parses them and updates the environment exported by the systemd user instance. See below for an
     discussion of which processes inherit those variables.</para>
@@ -58,7 +58,6 @@
     variable assignments, separated by newlines. The right hand side of these assignments may
     reference previously defined environment variables, using the <literal>${OTHER_KEY}</literal>
     and <literal>$OTHER_KEY</literal> format. It is also possible to use
-
     <literal>${<replaceable>FOO</replaceable>:-<replaceable>DEFAULT_VALUE</replaceable>}</literal>
     to expand in the same way as <literal>${<replaceable>FOO</replaceable>}</literal> unless the
     expansion would be empty, in which case it expands to <replaceable>DEFAULT_VALUE</replaceable>,