WIP: Added option to prepare mysql servers for replication #94

Closed
Ghost wants to merge 8 commits from mysql_replication into unstable
2 changed files with 3 additions and 1 deletions
Showing only changes of commit 598cee764f - Show all commits

View file

@ -45,6 +45,7 @@ mysql_restart_if_needed: True
# replication variables:
mysql_replication: false
mysql_log_bin: null
mysql_binlog_format: mixed
mysql_server_id: null
mysql_bind_address: null
mysql_repl_password: ''
mysql_repl_password: ''

View file

@ -5,3 +5,4 @@
log_bin = {{ mysql_log_bin }}
{% endif %}
server_id = {{ mysql_server_id }}
binlog_format = {{ mysql_binlog_format }}