mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
Added fragments and check_mode tests
This commit is contained in:
parent
e4648aceb5
commit
0c68410d16
3 changed files with 5 additions and 1 deletions
2
changelogs/fragments/72-mysql_user_change_detection.yml
Normal file
2
changelogs/fragments/72-mysql_user_change_detection.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- mysql_user - fixed change detection when using append_privs (https://github.com/ansible-collections/community.mysql/pull/72).
|
|
@ -263,7 +263,8 @@
|
|||
|
||||
# Test that append_privs will not attempt to make a change where current privileges are a superset of new privileges
|
||||
# (https://github.com/ansible-collections/community.mysql/issues/69)
|
||||
- include: test_priv_append_no_change.yml
|
||||
- include: test_priv_append_no_change.yml enable_check_mode=no
|
||||
- include: test_priv_append_no_change.yml enable_check_mode=yes
|
||||
|
||||
# Tests for the TLS requires dictionary
|
||||
- include: tls_requirements.yml
|
||||
|
|
|
@ -44,6 +44,7 @@
|
|||
priv: 'data1.*:SELECT/data2.*:SELECT'
|
||||
append_privs: yes
|
||||
state: present
|
||||
check_mode: '{{ enable_check_mode }}'
|
||||
register: result
|
||||
|
||||
- name: Assert that there wasn't a change and that the permissions are still the same
|
||||
|
|
Loading…
Add table
Reference in a new issue