mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-08-02 04:04:26 -07:00
Testing
This commit is contained in:
parent
681d5ac375
commit
e5ad4461cd
1 changed files with 2 additions and 1 deletions
|
@ -411,7 +411,8 @@ def user_mod(cursor, user, host, host_all, password, encrypted,
|
|||
elif not module.check_mode:
|
||||
query_with_args = "ALTER USER %s@%s IDENTIFIED WITH %s", (user, host, plugin)
|
||||
|
||||
cursor.execute(*query_with_args)
|
||||
if not module.check_mode:
|
||||
cursor.execute(*query_with_args)
|
||||
password_changed = True
|
||||
changed = True
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue