mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-08-03 20:54:25 -07:00
Fix: test_mysql_user : Test idempotency (expect ok) ignore mariadb 10.5
This commit is contained in:
parent
65cf4cf5d8
commit
27df5a757c
1 changed files with 2 additions and 0 deletions
|
@ -173,10 +173,12 @@
|
||||||
state: present
|
state: present
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
|
# FIXME: on mariadb 10.5 there's always a change
|
||||||
- name: Assert that priv did not change
|
- name: Assert that priv did not change
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- "result.changed == false"
|
- "result.changed == false"
|
||||||
|
when: install_type == 'mysql' or (install_type == 'mariadb' and mariadb_version is version('10.2', '=='))
|
||||||
|
|
||||||
# ============================================================
|
# ============================================================
|
||||||
- name: update user with invalid privileges
|
- name: update user with invalid privileges
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue