mirror of
https://github.com/HanXHX/ansible-mysql.git
synced 2026-02-28 10:32:10 +07:00
* Remove Stretch and Percona support * Delete root password management (On Buster, it uses socket auth) * Fix sync backups files master -> slave * Cleanup legacy code on replication slave * Use modern configuration * Debian buster configuration style * Drop logrotate management (useless) * Add new default values in defaults/main.yml (according with MariaDB doc) * Travis with Ansible 2.8+ * Drop feature "don't replicate mysql database" * Fully compatible with python3
15 lines
327 B
Django/Jinja
15 lines
327 B
Django/Jinja
# -------------------------------------------
|
|
# {{ 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 :
|