mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-03 17:23:09 +00:00
Merge pull request #1445 from sfromm/issue1439
Skip check of primary group when checking other group membership
This commit is contained in:
@@ -314,7 +314,7 @@ def user_group_membership(user):
|
||||
groups = []
|
||||
info = get_pwd_info(user)
|
||||
for group in grp.getgrall():
|
||||
if user in group[3] and info[3] != group[2]:
|
||||
if user in group[3]:
|
||||
groups.append(group[0])
|
||||
return groups
|
||||
|
||||
|
||||
Reference in New Issue
Block a user