mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
fix order
This commit is contained in:
parent
ea79c2a965
commit
aed8620367
2 changed files with 3 additions and 2 deletions
|
@ -152,11 +152,12 @@ def get_existing_authentication(cursor, user, host):
|
||||||
|
|
||||||
def user_add(cursor, user, host, host_all, password, encrypted,
|
def user_add(cursor, user, host, host_all, password, encrypted,
|
||||||
plugin, plugin_hash_string, plugin_auth_string, new_priv,
|
plugin, plugin_hash_string, plugin_auth_string, new_priv,
|
||||||
attributes, tls_requires, module, reuse_existing_password,
|
attributes, tls_requires, reuse_existing_password, module,
|
||||||
password_expire, password_expire_interval):
|
password_expire, password_expire_interval):
|
||||||
# If attributes are set, perform a sanity check to ensure server supports user attributes before creating user
|
# If attributes are set, perform a sanity check to ensure server supports user attributes before creating user
|
||||||
if attributes and not get_attribute_support(cursor):
|
if attributes and not get_attribute_support(cursor):
|
||||||
module.fail_json(msg="user attributes were specified but the server does not support user attributes")
|
module.fail_json(msg="user attributes were specified but the server does not support user attributes")
|
||||||
|
|
||||||
# we cannot create users without a proper hostname
|
# we cannot create users without a proper hostname
|
||||||
if host_all:
|
if host_all:
|
||||||
return {'changed': False, 'password_changed': False, 'attributes': attributes}
|
return {'changed': False, 'password_changed': False, 'attributes': attributes}
|
||||||
|
|
|
@ -569,7 +569,7 @@ def main():
|
||||||
reuse_existing_password = update_password == 'on_new_username'
|
reuse_existing_password = update_password == 'on_new_username'
|
||||||
result = user_add(cursor, user, host, host_all, password, encrypted,
|
result = user_add(cursor, user, host, host_all, password, encrypted,
|
||||||
plugin, plugin_hash_string, plugin_auth_string,
|
plugin, plugin_hash_string, plugin_auth_string,
|
||||||
priv, attributes, tls_requires, module, reuse_existing_password,
|
priv, attributes, tls_requires, reuse_existing_password, module,
|
||||||
password_expire, password_expire_interval)
|
password_expire, password_expire_interval)
|
||||||
changed = result['changed']
|
changed = result['changed']
|
||||||
password_changed = result['password_changed']
|
password_changed = result['password_changed']
|
||||||
|
|
Loading…
Add table
Reference in a new issue