Default MySQL works on jessie

This commit is contained in:
Emilien Mantel
2015-07-12 12:47:44 +02:00
parent 0627d4424c
commit 7b2439e590
9 changed files with 11 additions and 8 deletions

View File

@@ -0,0 +1,17 @@
# -------------------------------------------
# {{ ansible_managed }}
# -------------------------------------------
{% for i in mysql_cnf %}
[{{ i.group_name }}]
{% for c in i.conf %}
{% if c.value is defined %}
{{ c.key }} = {{ c.value }}
{% else %}
{{ c.key }}
{% endif %}
{% endfor %}
{% endfor %}
; vim: set ft=ini :