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:
R. Sicart 2021-12-02 09:40:36 +01:00
commit 7ffce75e3e

View file

@ -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)
#========================