2019-02-21 21:19:56 +00:00
|
|
|
# {{ ansible_managed }}
|
|
|
|
|
2020-02-08 16:32:59 +00:00
|
|
|
{% for section, options in mariadb_full_config.items() %}
|
2019-02-21 21:19:56 +00:00
|
|
|
[{{section}}]
|
2020-02-08 16:32:59 +00:00
|
|
|
{% for option, value in options.items() %}
|
2019-02-21 21:19:56 +00:00
|
|
|
{{ option }}{% if not value is sameas true %} = {{ value }}{% endif %}
|
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|