mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Fix stat code to return name of group owning the file rather than name of group that the file's owner belongs to.
Followup to #17
This commit is contained in:
committed by
Matt Clay
parent
2dde45cea9
commit
a6643160c5
@@ -342,7 +342,7 @@ def main():
|
||||
|
||||
d['pw_name'] = pw.pw_name
|
||||
|
||||
grp_info = grp.getgrgid(pw.pw_gid)
|
||||
grp_info = grp.getgrgid(st.st_gid)
|
||||
d['gr_name'] = grp_info.gr_name
|
||||
except:
|
||||
pass
|
||||
|
||||
Reference in New Issue
Block a user