mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 10:10:32 -07:00
Fix missing parameters for execute()
Signed-off-by: E.S. Rosenberg a.k.a. Keeper of the Keys <es.rosenberg+github@gmail.com>
This commit is contained in:
parent
6747ef32e9
commit
5079dc4ab7
1 changed files with 1 additions and 1 deletions
|
@ -267,7 +267,7 @@ def user_add(cursor, user, host, host_all, password, encrypted,
|
|||
final_attributes = attributes_get(cursor, user, host)
|
||||
|
||||
# if locked:
|
||||
# cursor.execute("ALTER USER %s@%s ACCOUNT LOCK")
|
||||
# cursor.execute("ALTER USER %s@%s ACCOUNT LOCK", (user, host))
|
||||
|
||||
return {'changed': True, 'password_changed': not used_existing_password, 'attributes': final_attributes}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue