From 0dbedf57cb988c3a5c3444f79d2da996e101edf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurent=20Inderm=C3=BChle?= Date: Thu, 26 Oct 2023 14:21:28 +0200 Subject: [PATCH] Document MySQL and MariaDB don't store roles with same manner (#584) --- plugins/module_utils/user.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/plugins/module_utils/user.py b/plugins/module_utils/user.py index a88b32e..dbc1c9b 100644 --- a/plugins/module_utils/user.py +++ b/plugins/module_utils/user.py @@ -743,6 +743,14 @@ def privileges_grant(cursor, user, host, db_table, priv, tls_requires, maria_rol priv_string = ",".join([p for p in priv if p not in ('GRANT', )]) query = ["GRANT %s ON %s" % (priv_string, db_table)] + # MySQL and MariaDB don't store roles in the user table the same manner: + # select user, host from mysql.user; + # +------------------+-----------+ + # | user | host | + # +------------------+-----------+ + # | role_foo | % | <- MySQL + # | role_foo | | <- MariaDB + # +------------------+-----------+ if not maria_role: query.append("TO %s@%s") params = (user, host)