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 /make-directive-index.py | |
parent | e1abd3efabb95a30d0702ed1c7c33c57bf898297 (diff) |
directive-index: system manager directives
Diffstat (limited to 'make-directive-index.py')
-rw-r--r-- | make-directive-index.py | 10 |
1 files changed, 10 insertions, 0 deletions
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) |