mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 10:10:32 -07:00
* Sync GHA workflow w/ the collection template (#452) * Sync GHA workflow w/ the collection template * Drop the trailing pre-cmd semicolon * Recover missing `-e` flag of `sed` * Use relative paths for version configs * Unquote `env.connector_version_file` * Use string formatting to fix the substitution problem (cherry picked from commit8107530744
) * Backport mysql_version_parts variable assignation (cherry picked from commit79046a88cb
) * Add changelog fragment * Backport flags and variables to differentiate MariaDB from MySQL setup * Backport issue-28 check for tls support * Backport tls_requirements simplified and deduplified tests Co-authored-by: Sviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua>
33 lines
1.2 KiB
YAML
33 lines
1.2 KiB
YAML
---
|
|
- name: "{{ role_name }} | setvars | split mysql version in parts"
|
|
set_fact:
|
|
mysql_version_parts: >-
|
|
{%- if mariadb_install -%}
|
|
{{ mariadb_version.split('.') }}
|
|
{%- else -%}
|
|
{{ mysql_version.split('.') }}
|
|
{%- endif -%}
|
|
|
|
- name: "{{ role_name }} | setvars | get mysql major version"
|
|
set_fact:
|
|
mysql_major_version: "{{ mysql_version_parts[0] + '.' + mysql_version_parts[1] }}"
|
|
|
|
- name: "{{ role_name }} | setvars | set the appropriate extension dependent on the mysql version"
|
|
set_fact:
|
|
mysql_compression_extension: "{{ mysql_version is version('8.0.0', '<') | ternary('gz', 'xz') }}"
|
|
|
|
- name: "{{ role_name }} | setvars | set the install type"
|
|
set_fact:
|
|
install_type: "{{ mariadb_install | ternary('mariadb', 'mysql') }}"
|
|
|
|
- name: "{{ role_name }} | setvars | set install_version"
|
|
set_fact:
|
|
install_version: "{{ lookup('vars', install_type + '_version') }}"
|
|
|
|
- name: "{{ role_name }} | setvars | set install_tarball"
|
|
set_fact:
|
|
install_tarball: "{{ lookup('vars', install_type + '_tarball') }}"
|
|
|
|
- name: "{{ role_name }} | setvars | set install_src"
|
|
set_fact:
|
|
install_src: "{{ lookup('vars', install_type + '_src') }}"
|