mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 02:30:32 -07:00
* Fix mariadb test setup
* Update mysql src URL
* Add changelog fragment
* Update 491_fix_download_url.yaml
Sanity test failed because minor_changes in not an element of a list.
* Fix casing
Co-authored-by: Laurent Indermühle <laurent.indermuehle@pm.me>
(cherry picked from commit 00fa058a18
)
Co-authored-by: Jorge Rodriguez (A.K.A. Tiriel) <jorge.rodriguez@futurice.com>
30 lines
1.2 KiB
YAML
30 lines
1.2 KiB
YAML
---
|
|
dbdeployer_install_dir: "{{ dbdeployer_home_dir }}/dbdeployer_{{ dbdeployer_version }}"
|
|
dbdeployer_src: "https://github.com/datacharmer/dbdeployer/releases/download/v{{ dbdeployer_version }}/dbdeployer-{{ dbdeployer_version }}.linux.tar.gz"
|
|
dbdeployer_installed_file: "{{ dbdeployer_home_dir }}/dbdeployer_installed"
|
|
|
|
dbdeployer_sandbox_download_dir: "{{ home_dir }}/downloads"
|
|
dbdeployer_sandbox_binary_dir: "{{ home_dir }}/opt/mysql"
|
|
dbdeployer_sandbox_home_dir: "{{ home_dir }}/sandboxes"
|
|
|
|
percona_mysql_packages:
|
|
- "{{ percona_client_package }}"
|
|
|
|
python_packages: [pymysql == 0.9.3]
|
|
|
|
install_prereqs:
|
|
- libaio1
|
|
- libnuma1
|
|
- libncurses5
|
|
|
|
install_python_prereqs:
|
|
- python3-dev
|
|
- python3-cryptography
|
|
- default-libmysqlclient-dev
|
|
- build-essential
|
|
|
|
mysql_tarball: "mysql-{{ mysql_version }}-linux-glibc2.12-x86_64.tar.{{ mysql_compression_extension }}"
|
|
mysql_src: "https://cdn.mysql.com/archives/mysql-{{ mysql_major_version }}/{{ mysql_tarball }}"
|
|
mariadb_url_subdir: "linux"
|
|
mariadb_tarball: "mariadb-{{ mariadb_version }}-{{ mariadb_url_subdir }}-x86_64.tar.gz"
|
|
mariadb_src: "https://downloads.mariadb.com/MariaDB/mariadb-{{ mariadb_version }}/bintar-{{ mariadb_url_subdir }}-x86_64/{{ mariadb_tarball }}"
|