diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2012-09-16 11:11:34 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2012-09-17 12:42:22 +0200 |
commit | e1abd3efabb95a30d0702ed1c7c33c57bf898297 (patch) | |
tree | de4c305a2935cbad215d52a2baab236268d64f5d /make-directive-index.py | |
parent | d9cfd69403d18438d7bafd172d6a0686940c2e30 (diff) |
directive-index: add UDEV fields
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 0c3b67a9d9..49d1028edb 100644 --- a/make-directive-index.py +++ b/make-directive-index.py @@ -38,6 +38,15 @@ TEMPLATE = '''\ <variablelist id='unit-directives' /> </refsect1> + + <refsect1> + <title>UDEV directives</title> + + <para>Directives for configuring systemd units through the + udev database.</para> + + <variablelist id='udev-directives' /> + </refsect1> </refentry> ''' @@ -91,6 +100,7 @@ def make_page(xml_files): "Extract directives from xml_files and return XML index tree." directive_groups = {name:collections.defaultdict(list) for name in ['unit-directives', + 'udev-directives', ]} for page in xml_files: _extract_directives(directive_groups, page) |