#################################################################### # WARNING: These are designed specifically for Ansible tests # # and should not be used as examples of how to write Ansible roles # #################################################################### # Copyright: (c) 2019, Andrew Klychkov (@Andersson007) # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # Initial CI tests of mysql_replication module: - import_tasks: mysql_replication_initial.yml # Tests of master_delay parameter: - import_tasks: mysql_replication_master_delay.yml # Tests of channel parameter: - import_tasks: mysql_replication_channel.yml when: - db_engine == 'mysql' # FIXME: mariadb introduces FOR CHANNEL in 10.7 - mysql8022_and_higher == true # FIXME: mysql 5.7 should work, but our tets fails, why? # Tests of resetmaster mode: - import_tasks: mysql_replication_resetmaster_mode.yml - include: issue-28.yml