mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
Backport mysql_version_parts variable assignation
This commit is contained in:
parent
caea3ef12b
commit
79046a88cb
1 changed files with 6 additions and 1 deletions
|
@ -1,7 +1,12 @@
|
||||||
---
|
---
|
||||||
- name: "{{ role_name }} | setvars | split mysql version in parts"
|
- name: "{{ role_name }} | setvars | split mysql version in parts"
|
||||||
set_fact:
|
set_fact:
|
||||||
mysql_version_parts: "{{ mysql_version.split('.') }}"
|
mysql_version_parts: >-
|
||||||
|
{%- if mariadb_install -%}
|
||||||
|
{{ mariadb_version.split('.') }}
|
||||||
|
{%- else -%}
|
||||||
|
{{ mysql_version.split('.') }}
|
||||||
|
{%- endif -%}
|
||||||
|
|
||||||
- name: "{{ role_name }} | setvars | get mysql major version"
|
- name: "{{ role_name }} | setvars | get mysql major version"
|
||||||
set_fact:
|
set_fact:
|
||||||
|
|
Loading…
Add table
Reference in a new issue