mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-08-04 05:04:23 -07:00
Fix: add fixme on test which create role in check mode 'again'
It changes only on mariadb 10.2 (doesn't change on mysql 8 or mariadb 10.5)
This commit is contained in:
parent
56a9e3f664
commit
7ffce75e3e
1 changed files with 5 additions and 0 deletions
|
@ -605,10 +605,15 @@
|
||||||
'mysql.*': 'UPDATE'
|
'mysql.*': 'UPDATE'
|
||||||
check_mode: yes
|
check_mode: yes
|
||||||
|
|
||||||
|
# FIXME:
|
||||||
|
# this test passes with mysql >= 8 and mariadb >= 10.3
|
||||||
|
# why does not pass with mariadb == 10.2?
|
||||||
- name: Check
|
- name: Check
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- result is not changed
|
- result is not changed
|
||||||
|
when: install_type == 'mysql' or
|
||||||
|
(install_type == 'mariadb' and srv['version']['major'] == 10 and srv['version']['minor'] > 2)
|
||||||
|
|
||||||
#========================
|
#========================
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue