From b679befe438428b5fa572ad4a5f997b9bc849278 Mon Sep 17 00:00:00 2001 From: Jorge-Rodriguez Date: Tue, 15 Sep 2020 18:59:23 +0300 Subject: [PATCH] Fix TLS requirements parsing --- plugins/modules/mysql_user.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/plugins/modules/mysql_user.py b/plugins/modules/mysql_user.py index 08fc941..8d6c36a 100644 --- a/plugins/modules/mysql_user.py +++ b/plugins/modules/mysql_user.py @@ -434,7 +434,11 @@ def get_tls_requires(cursor, user, host): pattern = r"(?<=\bREQUIRE\b)(.*?)(?=(?:\bPASSWORD\b|$))" requires_match = re.search(pattern, require_line) requires = requires_match.group().strip() if requires_match else "" - if len(requires.split()) > 1: + if any((requires.startswith(req) for req in ('SSL', 'X509', 'NONE'))): + requires = requires.split()[0] + if requires == 'NONE': + requires = None + else: import shlex items = iter(shlex.split(requires))