ansible-roles/mysql/templates/replication.cnf.j2
Patrick Marchand d15819fb04 Replication should set a binlog format
This could possible be better served in the base config file, but
for now I'll keep it here.
2020-06-01 12:01:01 -04:00

9 lines
173 B
Django/Jinja

# {{ansible_managed}}
[mysqld]
{% if mysql_log_bin %}
log_bin = {{ mysql_log_bin }}
{% endif %}
server_id = {{ mysql_server_id }}
binlog_format = {{ mysql_binlog_format }}