diff options
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) |