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

10 lines
246 B
Text
Raw Normal View History

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