mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
Add user locking to info module and test.
Signed-off-by: E.S. Rosenberg a.k.a. Keeper of the Keys <es.rosenberg+github@gmail.com>
This commit is contained in:
parent
4f0069d511
commit
178eade8e8
2 changed files with 5 additions and 1 deletions
|
@ -318,6 +318,7 @@ from ansible_collections.community.mysql.plugins.module_utils.user import (
|
||||||
get_resource_limits,
|
get_resource_limits,
|
||||||
get_existing_authentication,
|
get_existing_authentication,
|
||||||
get_user_implementation,
|
get_user_implementation,
|
||||||
|
user_is_locked,
|
||||||
)
|
)
|
||||||
from ansible.module_utils.six import iteritems
|
from ansible.module_utils.six import iteritems
|
||||||
from ansible.module_utils._text import to_native
|
from ansible.module_utils._text import to_native
|
||||||
|
@ -652,8 +653,10 @@ class MySQL_Info(object):
|
||||||
if authentications:
|
if authentications:
|
||||||
output_dict.update(authentications[0])
|
output_dict.update(authentications[0])
|
||||||
|
|
||||||
|
if not line['is_role']:
|
||||||
|
output_dict['locked'] = user_is_locked(self.cursor, user, host)
|
||||||
|
|
||||||
# TODO password_option
|
# TODO password_option
|
||||||
# TODO lock_option
|
|
||||||
# but both are not supported by mysql_user atm. So no point yet.
|
# but both are not supported by mysql_user atm. So no point yet.
|
||||||
|
|
||||||
output.append(output_dict)
|
output.append(output_dict)
|
||||||
|
|
|
@ -261,6 +261,7 @@
|
||||||
resource_limits: "{{ item.resource_limits | default(omit) }}"
|
resource_limits: "{{ item.resource_limits | default(omit) }}"
|
||||||
column_case_sensitive: true
|
column_case_sensitive: true
|
||||||
state: present
|
state: present
|
||||||
|
locked: "{{ item.locked | default(omit) }}"
|
||||||
loop: "{{ result.users_info }}"
|
loop: "{{ result.users_info }}"
|
||||||
loop_control:
|
loop_control:
|
||||||
label: "{{ item.name }}@{{ item.host }}"
|
label: "{{ item.name }}@{{ item.host }}"
|
||||||
|
|
Loading…
Add table
Reference in a new issue