mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 18:20:31 -07:00
fix variable name of returned value by get_existing_authentication()
This commit is contained in:
parent
04f24c57f3
commit
a60df289b2
1 changed files with 1 additions and 1 deletions
|
@ -162,7 +162,7 @@ def user_add(cursor, user, host, host_all, password, encrypted,
|
|||
existing_auth = get_existing_authentication(cursor, user, host)
|
||||
if existing_auth:
|
||||
plugin = existing_auth['plugin']
|
||||
plugin_hash_string = existing_auth['auth_string']
|
||||
plugin_hash_string = existing_auth['plugin_hash_string']
|
||||
password = None
|
||||
used_existing_password = True
|
||||
if password and encrypted:
|
||||
|
|
Loading…
Add table
Reference in a new issue