mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Undefined variable error
This commit is contained in:
parent
fef53b1a9e
commit
97cc259d8c
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ def user_mod(module, user, **kwargs):
|
|||
elif key == 'group' and kwargs[key] is not None:
|
||||
if not group_exists(kwargs[key]):
|
||||
module.fail_json(msg="Group %s does not exist" % (kwargs[key]))
|
||||
ginfo = group_info(group)
|
||||
ginfo = group_info(kwargs[key])
|
||||
if info[3] != ginfo[2]:
|
||||
cmd.append('-g')
|
||||
cmd.append(kwargs[key])
|
||||
|
|
Loading…
Reference in a new issue