diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2012-08-10 19:14:30 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2012-09-17 12:42:22 +0200 |
commit | ffafe91b5ae019c699c009c3128ddfe4320a750b (patch) | |
tree | e2e599921d9e7d76fbbfb124fdb892badee6e584 | |
parent | e1abd3efabb95a30d0702ed1c7c33c57bf898297 (diff) |
directive-index: system manager directives
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | make-directive-index.py | 10 | ||||
-rw-r--r-- | man/systemd.conf.xml | 2 |
3 files changed, 14 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 5a133da466..32f08edb0d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -702,7 +702,9 @@ XML_DIRECTIVE_FILES = \ man/systemd.timer.xml \ man/systemd.snapshot.xml \ man/systemd.exec.xml \ - man/systemd.device.xml + man/systemd.kill.xml \ + man/systemd.device.xml \ + man/systemd.conf.xml man/systemd.directives.xml: make-directive-index.py $(XML_DIRECTIVE_FILES) $(AM_V_at)$(MKDIR_P) $(dir $@) diff --git a/make-directive-index.py b/make-directive-index.py index 49d1028edb..468ea583fb 100644 --- a/make-directive-index.py +++ b/make-directive-index.py @@ -40,6 +40,15 @@ TEMPLATE = '''\ </refsect1> <refsect1> + <title>System manager directives</title> + + <para>Directives for configuring the behaviour of the + systemd process.</para> + + <variablelist id='systemd-directives' /> + </refsect1> + + <refsect1> <title>UDEV directives</title> <para>Directives for configuring systemd units through the @@ -101,6 +110,7 @@ def make_page(xml_files): directive_groups = {name:collections.defaultdict(list) for name in ['unit-directives', 'udev-directives', + 'systemd-directives', ]} for page in xml_files: _extract_directives(directive_groups, page) diff --git a/man/systemd.conf.xml b/man/systemd.conf.xml index a550c2c71a..7776c8f4f7 100644 --- a/man/systemd.conf.xml +++ b/man/systemd.conf.xml @@ -69,7 +69,7 @@ <para>All options are configured in the <literal>[Manager]</literal> section:</para> - <variablelist> + <variablelist class='systemd-directives'> <varlistentry> <term><varname>LogLevel=</varname></term> |