mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-08-04 05:04:23 -07:00
Testing
This commit is contained in:
parent
31bdc49400
commit
9fa9bb7630
1 changed files with 12 additions and 12 deletions
|
@ -575,12 +575,12 @@
|
||||||
- name: Plugin auth | Change auth user plugin in check mode
|
- name: Plugin auth | Change auth user plugin in check mode
|
||||||
community.mysql.mysql_user:
|
community.mysql.mysql_user:
|
||||||
<<: *mysql_params
|
<<: *mysql_params
|
||||||
name: '{{ test_user_name }}'
|
name: "{{ test_user_name }}"
|
||||||
host: '%'
|
host: '%'
|
||||||
plugin: caching_sha2_password
|
plugin: caching_sha2_password
|
||||||
plugin_auth_string: '{{ test_plugin_hash }}'
|
plugin_auth_string: "{{ test_plugin_auth_string }}"
|
||||||
salt: '{{ test_salt }}'
|
salt: "{{ test_salt }}"
|
||||||
priv: '{{ test_default_priv }}'
|
priv: "{{ test_default_priv }}"
|
||||||
check_mode: true
|
check_mode: true
|
||||||
register: result
|
register: result
|
||||||
failed_when: result is not changed
|
failed_when: result is not changed
|
||||||
|
@ -594,12 +594,12 @@
|
||||||
- name: Plugin auth | Change auth user plugin
|
- name: Plugin auth | Change auth user plugin
|
||||||
community.mysql.mysql_user:
|
community.mysql.mysql_user:
|
||||||
<<: *mysql_params
|
<<: *mysql_params
|
||||||
name: '{{ test_user_name }}'
|
name: "{{ test_user_name }}"
|
||||||
host: '%'
|
host: '%'
|
||||||
plugin: caching_sha2_password
|
plugin: caching_sha2_password
|
||||||
plugin_auth_string: '{{ test_plugin_hash }}'
|
plugin_auth_string: "{{ test_plugin_auth_string }}"
|
||||||
salt: '{{ test_salt }}'
|
salt: "{{ test_salt }}"
|
||||||
priv: '{{ test_default_priv }}'
|
priv: "{{ test_default_priv }}"
|
||||||
register: result
|
register: result
|
||||||
failed_when: result is not changed
|
failed_when: result is not changed
|
||||||
|
|
||||||
|
@ -612,12 +612,12 @@
|
||||||
- name: Plugin auth | Change auth user plugin again (should not change)
|
- name: Plugin auth | Change auth user plugin again (should not change)
|
||||||
community.mysql.mysql_user:
|
community.mysql.mysql_user:
|
||||||
<<: *mysql_params
|
<<: *mysql_params
|
||||||
name: '{{ test_user_name }}'
|
name: "{{ test_user_name }}"
|
||||||
host: '%'
|
host: '%'
|
||||||
plugin: caching_sha2_password
|
plugin: caching_sha2_password
|
||||||
plugin_auth_string: '{{ test_plugin_hash }}'
|
plugin_auth_string: "{{ test_plugin_auth_string }}"
|
||||||
salt: '{{ test_salt }}'
|
salt: "{{ test_salt }}"
|
||||||
priv: '{{ test_default_priv }}'
|
priv: "{{ test_default_priv }}"
|
||||||
register: result
|
register: result
|
||||||
failed_when: result is changed
|
failed_when: result is changed
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue