Merge pull request #1537 from sfromm/issue1536
Fix to user module to use self when calling group_exists
This commit is contained in:
commit
89b7fe663f
1 changed files with 1 additions and 1 deletions
|
@ -246,7 +246,7 @@ class User(object):
|
|||
cmd.append(self.uid)
|
||||
|
||||
if self.group is not None:
|
||||
if not user.group_exists(self.group):
|
||||
if not self.group_exists(self.group):
|
||||
self.module.fail_json(msg="Group %s does not exist" % self.group)
|
||||
cmd.append('-g')
|
||||
cmd.append(self.group)
|
||||
|
|
Loading…
Reference in a new issue