ansible-mysql/templates/etc/mysql/mariadb.conf.d/10-extra.cnf.j2

15 lines
327 B
Django/Jinja

# -------------------------------------------
# {{ ansible_managed }}
# -------------------------------------------
[mysqld]
{% for key, value in mariadb_extra_configuration.items() %}
{% if value is defined or value is not none %}
{{ key }} = {{ value }}
{% else %}
{{ key }}
{% endif %}
{% endfor %}
; vim: set ft=dosini :