mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
Hopefully fixed condition
Signed-off-by: E.S. Rosenberg a.k.a. Keeper of the Keys <es.rosenberg+github@gmail.com>
This commit is contained in:
parent
3d9df81d94
commit
13cb20768f
1 changed files with 1 additions and 4 deletions
|
@ -653,11 +653,8 @@ class MySQL_Info(object):
|
||||||
if authentications:
|
if authentications:
|
||||||
output_dict.update(authentications[0])
|
output_dict.update(authentications[0])
|
||||||
|
|
||||||
if line.get('is_role') and not line['is_role']:
|
if line.get('is_role') and line['is_role'] == 'N':
|
||||||
output_dict['locked'] = user_is_locked(self.cursor, user, host)
|
output_dict['locked'] = user_is_locked(self.cursor, user, host)
|
||||||
else:
|
|
||||||
from pprint import pprint
|
|
||||||
pprint(line)
|
|
||||||
|
|
||||||
# TODO password_option
|
# TODO password_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.
|
||||||
|
|
Loading…
Add table
Reference in a new issue