mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-14 02:11:56 -06:00
136c6c3e2a
https://pagure.io/freeipa/issue/4899 Reviewed-By: Jan Cholasta <jcholast@redhat.com>
18 lines
428 B
Cheetah
18 lines
428 B
Cheetah
{% raw -%}
|
|
{% import "openssl_macros.tmpl" as openssl -%}
|
|
{% endraw -%}
|
|
[ req ]
|
|
prompt = no
|
|
encrypt_key = no
|
|
|
|
{{ parameters|join('\n') }}
|
|
{% raw %}{% set rendered_extensions -%}{% endraw %}
|
|
{{ extensions|join('\n') }}
|
|
{% raw -%}
|
|
{%- endset -%}
|
|
{% if rendered_extensions -%}
|
|
req_extensions = {% call openssl.section() %}{{ rendered_extensions }}{% endcall %}
|
|
{% endif %}
|
|
{{ openssl.openssl_sections|join('\n\n') }}
|
|
{%- endraw %}
|