mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
Update plugins/module_utils/user.py
Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru>
This commit is contained in:
parent
7eb35e3b99
commit
40e43ac76a
1 changed files with 19 additions and 20 deletions
|
@ -311,7 +311,9 @@ def user_mod(cursor, user, host, host_all, password, encrypted,
|
|||
|
||||
# Handle password expiration
|
||||
if bool(password_expire):
|
||||
if impl.server_supports_password_expire(cursor):
|
||||
if not impl.server_supports_password_expire(cursor):
|
||||
module.fail_json(msg="The server version does not match the requirements "
|
||||
"for password_expire parameter. See module's documentation.")
|
||||
update = False
|
||||
mariadb_role = True if "mariadb" in str(impl.__name__) else False
|
||||
current_password_policy = get_password_expiration_policy(cursor, user, host, maria_role=mariadb_role)
|
||||
|
@ -329,9 +331,6 @@ def user_mod(cursor, user, host, host_all, password, encrypted,
|
|||
set_password_expire(cursor, user, host, password_expire, password_expire_interval)
|
||||
password_changed = True
|
||||
changed = True
|
||||
else:
|
||||
module.fail_json(msg="The server version does not match the requirements "
|
||||
"for password_expire parameter. See module's documentation.")
|
||||
|
||||
# Handle plugin authentication
|
||||
if plugin and not role:
|
||||
|
|
Loading…
Add table
Reference in a new issue