mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-08-27 16:31:47 -07:00
Assert that priv did not change on mariadb also
This commit is contained in:
parent
2ed72a53da
commit
4dc1246532
1 changed files with 2 additions and 2 deletions
|
@ -178,7 +178,7 @@
|
||||||
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', '<')) or (install_type == 'mariadb' and mariadb_version is version('10.5', '<'))
|
||||||
|
|
||||||
- name: remove username
|
- name: remove username
|
||||||
mysql_user:
|
mysql_user:
|
||||||
|
@ -227,7 +227,7 @@
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- result is not changed
|
- result is not changed
|
||||||
when: (install_type == 'mysql' and mysql_version is version('8', '<'))
|
when: (install_type == 'mysql' and mysql_version is version('8', '<')) or (install_type == 'mariadb')
|
||||||
|
|
||||||
- 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