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

15 lines
325 B
Plaintext
Raw Normal View History

# -------------------------------------------
# {{ ansible_managed }}
# -------------------------------------------
2016-09-25 16:23:38 +07:00
[mysqld]
2018-02-14 19:28:55 +07:00
{% for key, value in mysql_extra_configuration.items() %}
2016-09-25 16:23:38 +07:00
{% if value is defined or value is not none %}
{{ key }} = {{ value }}
{% else %}
2016-09-25 16:23:38 +07:00
{{ key }}
{% endif %}
{% endfor %}
2015-08-09 03:17:01 +07:00
; vim: set ft=dosini :