From e3775aed61ccc46066945cc3f4e42a0b5b9c947d Mon Sep 17 00:00:00 2001 From: "E.S. Rosenberg a.k.a. Keeper of the Keys" Date: Mon, 10 Mar 2025 21:17:15 +0200 Subject: [PATCH] locked check should not run for roles. Signed-off-by: E.S. Rosenberg a.k.a. Keeper of the Keys --- plugins/module_utils/user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/module_utils/user.py b/plugins/module_utils/user.py index c35b945..311afb2 100644 --- a/plugins/module_utils/user.py +++ b/plugins/module_utils/user.py @@ -552,7 +552,7 @@ def user_mod(cursor, user, host, host_all, password, encrypted, if attribute_support: final_attributes = attributes_get(cursor, user, host) - if user_is_locked(cursor, user, host) != locked: + if not role and user_is_locked(cursor, user, host) != locked: if not module.check_mode: if locked: cursor.execute("ALTER USER %s@%s ACCOUNT LOCK", (user, host))