ansible-role-mariadb/templates/my.cnf.j2

10 lines
238 B
Text
Raw Normal View History

2019-02-21 21:19:56 +00:00
# {{ ansible_managed }}
{% for section, options in mariadb_full_config.items() %}
2019-02-21 21:19:56 +00:00
[{{section}}]
{% 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 %}