From a8702b88d5d8cff1a19e8fc6da5c17df41b6b48f Mon Sep 17 00:00:00 2001 From: "E.S. Rosenberg a.k.a. Keeper of the Keys" Date: Tue, 11 Mar 2025 15:41:48 +0200 Subject: [PATCH] Add check_mode feedback Signed-off-by: E.S. Rosenberg a.k.a. Keeper of the Keys --- plugins/module_utils/user.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/module_utils/user.py b/plugins/module_utils/user.py index e865723..d8b2d5c 100644 --- a/plugins/module_utils/user.py +++ b/plugins/module_utils/user.py @@ -566,6 +566,12 @@ def user_mod(cursor, user, host, host_all, password, encrypted, else: cursor.execute("ALTER USER %s@%s ACCOUNT UNLOCK", (user, host)) msg = 'User unlocked' + else: + if locked: + msg = 'User will be locked' + else: + msg = 'User will be unlocked' + changed = True if role: