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

18 lines
343 B
Plaintext
Raw Normal View History

# -------------------------------------------
# {{ ansible_managed }}
# -------------------------------------------
2015-08-11 04:45:01 +07:00
{% for i in mysql_extra_configuration %}
[{{ i.group_name }}]
{% for c in i.conf %}
{% if c.value is defined %}
{{ c.key }} = {{ c.value }}
{% else %}
{{ c.key }}
{% endif %}
{% endfor %}
{% endfor %}
2015-08-09 03:17:01 +07:00
; vim: set ft=dosini :