community.mysql/tests/integration/targets/setup_mysql/defaults/main.yml
R. Sicart 661ae6f8be Install mariadb-client when install_type is mariadb
To use the same client tools as the database engine.

And to use a more updated mysqldump version, in order to fix this error:

ERROR 1556 (HY000) at line 776: You can't use locks with log tables
2021-12-10 15:29:56 +01:00

18 lines
312 B
YAML

dbdeployer_version: 1.56.0
dbdeployer_home_dir: /opt/dbdeployer
home_dir: /root
mariadb_install: false
mysql_version: 8.0.22
mariadb_version: 10.5.4
mysql_base_port: 3306
percona_client_package: >-
{%- if mariadb_install -%}
mariadb-client
{%- else -%}
percona-server-client-5.7
{%- endif -%}