mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 02:00:31 -07:00
* Cut tests containers * Cut unused flatten versions * Fix installation of mysqlclient on Ubuntu * Cut unused variables * Fix package missing on Unbuntu 22.04 * Fix variable templating * Fix test for ansible 2.17 and do remove the ignore_errors ignore_errors is bad because it makes searching for real errors difficult.
20 lines
729 B
YAML
20 lines
729 B
YAML
---
|
|
|
|
- name: "{{ role_name }} | Requirements | Install Linux packages"
|
|
ansible.builtin.package:
|
|
name:
|
|
- bzip2 # To test mysql_db dump compression
|
|
- "{{ db_engine }}-client"
|
|
|
|
# The command mysql-config must be present for mysqlclient python package.
|
|
# The package libmysqlclient-dev that provides this command have a
|
|
# different name between Ubuntu 20.04 and 22.04. Luckily, libmysql++ is
|
|
# available on both.
|
|
- "{{ 'libmysql++-dev' if db_engine == 'mysql' else 'libmariadb-dev' }}"
|
|
state: present
|
|
|
|
- name: "{{ role_name }} | Requirements | Install Python packages"
|
|
ansible.builtin.pip:
|
|
name:
|
|
- "{{ connector_name }}=={{ connector_version }}"
|
|
state: present
|