mysql_extra_configuration rework

This commit is contained in:
Emilien Mantel
2016-09-25 11:23:38 +02:00
parent deb2e1b811
commit 17f3731450
3 changed files with 8 additions and 12 deletions

View File

@@ -2,16 +2,13 @@
# {{ ansible_managed }}
# -------------------------------------------
{% for i in mysql_extra_configuration %}
[{{ i.group_name }}]
{% for c in i.conf %}
{% if c.value is defined %}
{{ c.key }} = {{ c.value }}
[mysqld]
{% for key, value in mysql_extra_configuration.iteritems() %}
{% if value is defined or value is not none %}
{{ key }} = {{ value }}
{% else %}
{{ c.key }}
{{ key }}
{% endif %}
{% endfor %}
{% endfor %}
; vim: set ft=dosini :