add mysql role

This commit is contained in:
2022-08-30 07:48:38 -05:00
parent 523d6f3b32
commit 3e982b9729
12 changed files with 231 additions and 0 deletions

View File

@ -0,0 +1,12 @@
# {{ ansible_managed }}
{% for section, cfg in mysql_config.iteritems() | sort %}
[{{section}}]
{% for k, v in cfg.iteritems() | sort %}
{% if k is defined and v is not none %}
{{ k }} = {{ v }}
{% elif k and v is none %}
{{ k }}
{% endif %}
{% endfor %}
{% endfor %}