mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-08-27 16:31:47 -07:00
Fix assertion comments
This commit is contained in:
parent
1321b8c7d4
commit
b8ff861135
1 changed files with 2 additions and 2 deletions
|
@ -222,12 +222,12 @@
|
||||||
state: present
|
state: present
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
# FIXME: on mysql >=8 and mariadb >=10.5.2 there's always a change because the REPLICATION CLIENT privilege was renamed to BINLOG MONITOR
|
# FIXME: on mysql >=8 there's always a change (ALL PRIVILEGES -> specific privileges)
|
||||||
- name: Assert that priv did not change
|
- name: Assert that priv did not change
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- result is not changed
|
- result is not changed
|
||||||
when: (install_type == 'mysql' and mysql_version is version('8', '<')) or (install_type == 'mariadb' and mariadb_version is version('10.2', '=='))
|
when: (install_type == 'mysql' and mysql_version is version('8', '<'))
|
||||||
|
|
||||||
- name: Collect user info by host
|
- name: Collect user info by host
|
||||||
community.mysql.mysql_info:
|
community.mysql.mysql_info:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue