add filter to return an auth key when not empty

This commit is contained in:
Laurent Indermuehle 2023-09-15 10:42:12 +02:00
parent fcb2d49b24
commit 5dd0321607
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09

View file

@ -554,18 +554,15 @@ class MySQL_Info(object):
resource_limits = get_resource_limits(self.module, self.cursor, user, host)
authentications = get_existing_authentication(self.cursor, user, host)
copy_ressource_limits = dict.copy(resource_limits)
output_dict = {
'user': user,
'host': host,
'privs': '/'.join(priv_string),
'resource_limits': copy_ressource_limits,
'authentications': authentications
}
# Prevent returning a resource limit if there is no value
# Prevent returning a resource limit if empty
if resource_limits:
for key, value in resource_limits.items():
if value == 0:
@ -573,6 +570,9 @@ class MySQL_Info(object):
if len(output_dict['resource_limits']) == 0:
del output_dict['resource_limits']
authentications = get_existing_authentication(self.cursor, user, host)
output_dict.update(authentications)
output.append(output_dict)
self.info['users_privs'] = output