Skip to content
Snippets Groups Projects
php.j2 843 B
; {{ ansible_managed }}

{% if php_conf_file_proposed_sections | bool %}
{%     for php_section in php_conf_file_proposed_vars | dict2items %}
[{{ php_section.key }}]
{%         for php_variable_pair in php_section.value | dict2items %}
{%             if php_conf_file_no_extra_spaces | bool %}
{{ php_variable_pair.key }}={{ php_variable_pair.value }}
{%             else %}
{{ php_variable_pair.key }} = {{ php_variable_pair.value }}
{%             endif %}
{%         endfor %}
{%     endfor %}
{% else %}
{%     for php_conf_pair in php_conf_file_proposed_vars | ansible.builtin.dict2items %}
{%         if php_conf_file_no_extra_spaces | bool %}
{{ php_conf_pair.key }}={{ php_conf_pair.value }}
{%         else %}
{{ php_conf_pair.key }} = {{ php_conf_pair.value }}
{%         endif %}
{%     endfor %}
{% endif %}

; vim: syntax=dosini