mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #1445 from sfromm/issue1439
Skip check of primary group when checking other group membership
This commit is contained in:
commit
895715b65b
1 changed files with 1 additions and 1 deletions
|
@ -314,7 +314,7 @@ def user_group_membership(user):
|
||||||
groups = []
|
groups = []
|
||||||
info = get_pwd_info(user)
|
info = get_pwd_info(user)
|
||||||
for group in grp.getgrall():
|
for group in grp.getgrall():
|
||||||
if user in group[3] and info[3] != group[2]:
|
if user in group[3]:
|
||||||
groups.append(group[0])
|
groups.append(group[0])
|
||||||
return groups
|
return groups
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue