X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=make-directive-index.py;h=af2d948cd1b696df8f2f635aa27bc58c2b5f80f0;hp=0c3b67a9d9ab1318f02693eeaef448d88963bf11;hb=f89a3b6f5bf695186e7b9e6cc63993b1272e7569;hpb=d9cfd69403d18438d7bafd172d6a0686940c2e30 diff --git a/make-directive-index.py b/make-directive-index.py index 0c3b67a9d..af2d948cd 100644 --- a/make-directive-index.py +++ b/make-directive-index.py @@ -38,6 +38,33 @@ TEMPLATE = '''\ + + + System manager directives + + Directives for configuring the behaviour of the + systemd process. + + + + + + UDEV directives + + Directives for configuring systemd units through the + udev database. + + + + + + Journal directives + + Directives for configuring the behaviour of the + journald process. + + + ''' @@ -91,6 +118,9 @@ 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', + 'systemd-directives', + 'journal-directives', ]} for page in xml_files: _extract_directives(directive_groups, page)