15 lines
327 B
Plaintext
15 lines
327 B
Plaintext
|
# -------------------------------------------
|
||
|
# {{ ansible_managed }}
|
||
|
# -------------------------------------------
|
||
|
|
||
|
[mysqld]
|
||
|
{% for key, value in mariadb_extra_configuration.items() %}
|
||
|
{% if value is defined or value is not none %}
|
||
|
{{ key }} = {{ value }}
|
||
|
{% else %}
|
||
|
{{ key }}
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
|
||
|
; vim: set ft=dosini :
|