1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix "TypeError: group id must be integer" if groupid passed in for group

key
This commit is contained in:
Peter Hall 2014-07-15 11:16:47 +10:00
parent f063aafeeb
commit 09a5d8f6d1

View file

@ -440,7 +440,7 @@ class User(object):
def group_exists(self,group):
try:
if group.isdigit():
if grp.getgrgid(group):
if grp.getgrgid(int(group)):
return True
else:
if grp.getgrnam(group):