Backport flags and variables to differentiate MariaDB from MySQL setup

This commit is contained in:
Laurent Indermuehle 2022-11-10 10:11:33 +01:00
commit b4303511d5
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09
6 changed files with 39 additions and 14 deletions

View file

@ -3,11 +3,16 @@ dbdeployer_home_dir: /opt/dbdeployer
home_dir: /root
percona_client_version: 5.7
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 -%}