--- - name: MYSQL_VARIABLES | Set read only mysql_variables: variable=read_only value=ON when: mysql_slave_readonly - name: TEMPLATE | Deploy slave configuration template: > src=etc/mysql/conf.d/51-slave.cnf.j2 dest=/etc/mysql/conf.d/51-slave.cnf notify: restart mysql - name: MYSQL_REPLICATION | Get slave status mysql_replication: mode=getslave ignore_errors: yes register: slave_status - name: INCLUDE_TASKS | Transfert /etc/mysql/debian.cnf from master include_tasks: slave/ssh.yml when: mysql_slave_replicate_mysqldb or ((slave_status.failed is defined or not slave_status.Is_Slave) and mysql_slave_import_data) - name: INCLUDE_TASKS | Import data include_tasks: slave/import_data.yml when: (slave_status.failed is defined or not slave_status.Is_Slave) and mysql_slave_import_data - name: INCLUDE_TASKS | Configure replication include_tasks: slave/replication.yml when: (slave_status.failed is defined or not slave_status.Is_Slave) or mysql_slave_force_setup - name: INCLUDE_TASKS | Transfert /etc/mysql/debian.cnf from master include_tasks: slave/debiancnf.yml when: mysql_slave_replicate_mysqldb - name: MYSQL_REPLICATION | Get slave status mysql_replication: mode=getslave ignore_errors: yes register: slave_status - name: INCLUDE_TASKS | Configure MariaDB GTID include_tasks: slave/mariadb_gtid.yml when: > mysql_vendor == 'mariadb' and slave_status.Using_Gtid == 'No' and mysql_gtid