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=49d1028edb8778b8187a1451c6611b1815788361;hb=b5cff06b4876e9e3c30431f642b9e54a17bca19a;hpb=e1abd3efabb95a30d0702ed1c7c33c57bf898297 diff --git a/make-directive-index.py b/make-directive-index.py index 49d1028ed..af2d948cd 100644 --- a/make-directive-index.py +++ b/make-directive-index.py @@ -39,6 +39,15 @@ TEMPLATE = '''\ + + System manager directives + + Directives for configuring the behaviour of the + systemd process. + + + + UDEV directives @@ -47,6 +56,15 @@ TEMPLATE = '''\ + + + Journal directives + + Directives for configuring the behaviour of the + journald process. + + + ''' @@ -101,6 +119,8 @@ def make_page(xml_files): 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)