avoid problem with old mongo version without roles
This commit is contained in:
parent
edbad80123
commit
29daa6ffe0
1 changed files with 1 additions and 1 deletions
|
@ -265,7 +265,7 @@ def main():
|
|||
uinfo = user_find(client, user, db_name)
|
||||
if update_password != 'always' and uinfo:
|
||||
password = None
|
||||
if list(map((lambda x: x['role']), uinfo['roles'])) == roles:
|
||||
if 'roles' in uinfo and list(map((lambda x: x['role']), uinfo['roles'])) == roles:
|
||||
module.exit_json(changed=False, user=user)
|
||||
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue