Update plugins/module_utils/user.py

Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru>
This commit is contained in:
tompal3 2024-02-20 21:34:11 +02:00 committed by GitHub
parent 7eb35e3b99
commit 40e43ac76a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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: