mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
Merge pull request #5944 from sean-/devel
Fix broken behavior when removing all auxiliary groups from a user. See #5933 for more details. Tests by hand correct and passes "make clean tests".
This commit is contained in:
@@ -443,7 +443,7 @@ class User(object):
|
|||||||
if self.groups is None:
|
if self.groups is None:
|
||||||
return None
|
return None
|
||||||
info = self.user_info()
|
info = self.user_info()
|
||||||
groups = set(self.groups.split(','))
|
groups = set(filter(None, self.groups.split(',')))
|
||||||
for g in set(groups):
|
for g in set(groups):
|
||||||
if not self.group_exists(g):
|
if not self.group_exists(g):
|
||||||
self.module.fail_json(msg="Group %s does not exist" % (g))
|
self.module.fail_json(msg="Group %s does not exist" % (g))
|
||||||
|
|||||||
Reference in New Issue
Block a user