From ec7686d820b6b4bae0b23311bde02e8b431ce144 Mon Sep 17 00:00:00 2001 From: Laurent Indermuehle Date: Thu, 6 Jun 2024 13:46:23 +0200 Subject: [PATCH] fix tuple indexerror when no accounts are found --- plugins/module_utils/user.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/module_utils/user.py b/plugins/module_utils/user.py index 25b1734..62b7dad 100644 --- a/plugins/module_utils/user.py +++ b/plugins/module_utils/user.py @@ -113,6 +113,9 @@ def get_existing_authentication(cursor, user, host): group by plugin, authentication_string limit 2""", {'user': user, 'host': host}) rows = cursor.fetchall() + if len(rows) == 0: + return None + # Mysql_info use a DictCursor so we must convert back to a list # otherwise we get KeyError 0 if isinstance(rows, dict):