mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-08-02 04:04:26 -07:00
refactor
This commit is contained in:
parent
6e094ce3f2
commit
8e78265364
1 changed files with 2 additions and 2 deletions
|
@ -396,7 +396,7 @@ def user_mod(cursor, user, host, host_all, password, encrypted,
|
|||
query_with_args = None
|
||||
if plugin_hash_string:
|
||||
query_with_args = "ALTER USER %s@%s IDENTIFIED WITH %s AS %s", (user, host, plugin, plugin_hash_string)
|
||||
elif plugin_auth_string and not module.check_mode:
|
||||
elif plugin_auth_string:
|
||||
# Mysql and MariaDB differ in naming pam plugin and syntax to set it
|
||||
if plugin in ('pam', 'ed25519'):
|
||||
query_with_args = "ALTER USER %s@%s IDENTIFIED WITH %s USING %s", (user, host, plugin, plugin_auth_string)
|
||||
|
@ -408,7 +408,7 @@ def user_mod(cursor, user, host, host_all, password, encrypted,
|
|||
query_with_args = ("ALTER USER %s@%s IDENTIFIED WITH %s AS 0x" + generated_hash_string), (user, host, plugin)
|
||||
else:
|
||||
query_with_args = "ALTER USER %s@%s IDENTIFIED WITH %s BY %s", (user, host, plugin, plugin_auth_string)
|
||||
elif not module.check_mode:
|
||||
else:
|
||||
query_with_args = "ALTER USER %s@%s IDENTIFIED WITH %s", (user, host, plugin)
|
||||
|
||||
if not module.check_mode:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue