mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
remove UID/GID from output
This commit is contained in:
parent
a548769792
commit
fc4ae3e270
1 changed files with 2 additions and 2 deletions
|
@ -187,11 +187,11 @@ def user_and_group(filename):
|
|||
try:
|
||||
user = pwd.getpwuid(uid)[0]
|
||||
except KeyError:
|
||||
user = 'UID' + str(uid)
|
||||
user = str(uid)
|
||||
try:
|
||||
group = grp.getgrgid(gid)[0]
|
||||
except KeyError:
|
||||
group = 'GID' + str(gid)
|
||||
group = str(gid)
|
||||
return (user, group)
|
||||
|
||||
def set_context_if_different(path, context, changed):
|
||||
|
|
Loading…
Reference in a new issue