mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-08-04 13:14:26 -07:00
Do not test mysql_variables modes persist and persist_only on mariadb
Those modes do not exist on mariadb. See https://mariadb.com/kb/en/set/
This commit is contained in:
parent
74d15e8163
commit
a4a6108f12
1 changed files with 3 additions and 1 deletions
|
@ -359,7 +359,9 @@
|
|||
|
||||
- include: assert_var.yml changed=true output={{ result }} var_name={{ set_name }} var_value='{{ def_val }}'
|
||||
|
||||
when: mysql_version is not version('8.0', '<')
|
||||
when:
|
||||
- mysql_version is version('8.0', '>=')
|
||||
- install_type == 'mysql'
|
||||
|
||||
# Bugfix of https://github.com/ansible/ansible/issues/54239
|
||||
# - name: set variable containing dot
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue