diff options
author | Josh Triplett <josh@joshtriplett.org> | 2014-11-29 01:06:04 -0800 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-11-29 13:55:31 -0500 |
commit | 1b907b5c3b11491b790e541dd24255a758511a2f (patch) | |
tree | 3a13537868e9518c704c324fc93eb157022ca72a /man/systemd-system.conf.xml | |
parent | d3fae78fe86f1dfcdb07fd613ccbb3adf547a617 (diff) |
core: Support system.conf.d and user.conf.d directories in the usual search paths
Diffstat (limited to 'man/systemd-system.conf.xml')
-rw-r--r-- | man/systemd-system.conf.xml | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/man/systemd-system.conf.xml b/man/systemd-system.conf.xml index 284516d931..dfb180cc54 100644 --- a/man/systemd-system.conf.xml +++ b/man/systemd-system.conf.xml @@ -22,7 +22,8 @@ along with systemd; If not, see <http://www.gnu.org/licenses/>. --> -<refentry id="systemd-system.conf"> +<refentry id="systemd-system.conf" + xmlns:xi="http://www.w3.org/2001/XInclude"> <refentryinfo> <title>systemd-system.conf</title> <productname>systemd</productname> @@ -44,25 +45,39 @@ <refnamediv> <refname>systemd-system.conf</refname> + <refname>system.conf.d</refname> <refname>systemd-user.conf</refname> - <refpurpose>System and session service manager configuration file</refpurpose> + <refname>user.conf.d</refname> + <refpurpose>System and session service manager configuration files</refpurpose> </refnamediv> <refsynopsisdiv> <para><filename>/etc/systemd/system.conf</filename></para> + <para><filename>/etc/systemd/system.conf.d/*.conf</filename></para> + <para><filename>/run/systemd/system.conf.d/*.conf</filename></para> + <para><filename>/usr/lib/systemd/system.conf.d/*.conf</filename></para> <para><filename>/etc/systemd/user.conf</filename></para> + <para><filename>/etc/systemd/user.conf.d/*.conf</filename></para> + <para><filename>/run/systemd/user.conf.d/*.conf</filename></para> + <para><filename>/usr/lib/systemd/user.conf.d/*.conf</filename></para> </refsynopsisdiv> <refsect1> <title>Description</title> - <para>When run as system instance systemd reads the - configuration file <filename>system.conf</filename>, - otherwise <filename>user.conf</filename>. These + <para>When run as a system instance, systemd interprets the + configuration file <filename>system.conf</filename> and the + files in <filename>system.conf.d</filename> directories; when + run as a user instance, systemd interprets the configuration + file <filename>user.conf</filename> and the files in + <filename>user.conf.d</filename> directories. These configuration files contain a few settings controlling basic manager operations.</para> </refsect1> + <xi:include href="standard-conf.xml" xpointer="confd" /> + <xi:include href="standard-conf.xml" xpointer="conf" /> + <refsect1> <title>Options</title> |