From 6747ef32e94f8fbad0944a7d95c2817d77269103 Mon Sep 17 00:00:00 2001 From: "E.S. Rosenberg a.k.a. Keeper of the Keys" Date: Mon, 3 Mar 2025 16:36:04 +0200 Subject: [PATCH] Add the location and logic of where I think user locking would happen. Signed-off-by: E.S. Rosenberg a.k.a. Keeper of the Keys --- plugins/module_utils/user.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/plugins/module_utils/user.py b/plugins/module_utils/user.py index 44ac96f..050e766 100644 --- a/plugins/module_utils/user.py +++ b/plugins/module_utils/user.py @@ -266,6 +266,9 @@ def user_add(cursor, user, host, host_all, password, encrypted, cursor.execute("ALTER USER %s@%s ATTRIBUTE %s", (user, host, json.dumps(attributes))) final_attributes = attributes_get(cursor, user, host) +# if locked: +# cursor.execute("ALTER USER %s@%s ACCOUNT LOCK") + return {'changed': True, 'password_changed': not used_existing_password, 'attributes': final_attributes} @@ -575,6 +578,13 @@ def user_mod(cursor, user, host, host_all, password, encrypted, cursor.execute(*query_with_args) changed = True +# if user_is_locked(cursor, user, host, False) != locked: +# if locked: +# cursor.execute("ALTER USER %s@%s ACCOUNT LOCK", (user, host)) +# else: +# cursor.execute("ALTER USER %s@%s ACCOUNT UNLOCK", (user, host)) +# changed = True + return {'changed': changed, 'msg': msg, 'password_changed': password_changed, 'attributes': final_attributes}