diff options
author | Daniel Mack <github@zonque.org> | 2016-01-22 09:10:13 +0100 |
---|---|---|
committer | Daniel Mack <github@zonque.org> | 2016-01-22 09:10:13 +0100 |
commit | 07313a18263ca6f2e2a49ee4fba79aa6249ff398 (patch) | |
tree | 64341cc8f0d644be4d3586848fc65b68fdc76c1f /man | |
parent | 808abf0969aa33abbc45ae6f6059b4c597a5b7a3 (diff) | |
parent | 0cf4c0d1414a0110d420e7b4b1c2f645be811738 (diff) |
Merge pull request #2409 from snakeroot/dropin-doc-2
man: describe precedence of drop-in .conf files over unit files
Diffstat (limited to 'man')
-rw-r--r-- | man/systemd.unit.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/man/systemd.unit.xml b/man/systemd.unit.xml index 9846659134..a95c160954 100644 --- a/man/systemd.unit.xml +++ b/man/systemd.unit.xml @@ -191,6 +191,17 @@ <literal>.d/</literal> subdirectory and reads its <literal>.conf</literal> files.</para> + <para>In addition to <filename>/etc/systemd/system</filename>, + the drop-in <literal>.conf</literal> files for system services + can be placed in <filename>/usr/lib/systemd/system</filename> or + <filename>/run/systemd/system</filename> directories. Drop-in + files in <filename>/etc</filename> take precedence over those in + <filename>/run</filename> which in turn take precedence over + those in <filename>/usr/lib</filename>. Drop-in files under any of + these directories take precedence over unit files wherever located. + (Of course, since <filename>/run</filename> is temporary and + <filename>/usr/lib</filename> is for vendors, it is unlikely + drop-ins should be used in either of those places.)</para> <!-- Note that we do not document .include here, as we consider it mostly obsolete, and want people to use .d/ drop-ins instead. --> @@ -1402,6 +1413,7 @@ PrivateTmp=yes</programlisting> cannot be reset to an empty list, so dependencies can only be added in drop-ins. If you want to remove dependencies, you have to override the entire unit.</para> + </example> </refsect1> |