mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-14 02:11:56 -06:00
80be181629
csrgen broke packaging of ipaclient for PyPI. All csrgen related resources are now package data of ipaclient package. Package data is accessed with Jinja's PackageLoader() or through pkg_resources. https://pagure.io/freeipa/issue/6714 Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Ben Lipton <blipton@redhat.com> Reviewed-By: Martin Basti <mbasti@redhat.com>
30 lines
890 B
Cheetah
30 lines
890 B
Cheetah
{# List containing rendered sections to be included at end #}
|
|
{% set openssl_sections = [] %}
|
|
|
|
{#
|
|
List containing one entry for each section name allocated. Because of
|
|
scoping rules, we need to use a list so that it can be a "per-render global"
|
|
that gets updated in place. Real globals are shared by all templates with the
|
|
same environment, and variables defined in the macro don't persist after the
|
|
macro invocation ends.
|
|
#}
|
|
{% set openssl_section_num = [] %}
|
|
|
|
{% macro section() -%}
|
|
{% set name -%}
|
|
sec{{ openssl_section_num|length -}}
|
|
{% endset -%}
|
|
{% do openssl_section_num.append('') -%}
|
|
{% set contents %}{{ caller() }}{% endset -%}
|
|
{% if contents -%}
|
|
{% set sectiondata = formatsection(name, contents) -%}
|
|
{% do openssl_sections.append(sectiondata) -%}
|
|
{% endif -%}
|
|
{{ name -}}
|
|
{% endmacro %}
|
|
|
|
{% macro formatsection(name, contents) -%}
|
|
[ {{ name }} ]
|
|
{{ contents -}}
|
|
{% endmacro %}
|