mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-08-03 12:44:25 -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'
|
||||
check_mode: yes
|
||||
|
||||
# FIXME:
|
||||
# this test passes with mysql >= 8 and mariadb >= 10.3
|
||||
# why does not pass with mariadb == 10.2?
|
||||
- name: Check
|
||||
assert:
|
||||
that:
|
||||
- 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