Displaying 1 result from an estimated 1 matches for "max_getpwent_users".
2006 Apr 05
0
winbind enum users = yes, but: is there a limit?
...many more. Only *one* of those users has
uidNumber, gidNumber, set to make it usable in the Linux environment.
When I say
getent passwd RABOTESTEU-gautierb
I see the entry for that user, but if I say
getent passwd
I don't.
I notice that source/nsswitch/winbindd_user.c contains a constant
MAX_GETPWENT_USERS which is set to 500. Could that be biting me? It
looks as if that constant is simply a 'batch size' (max number of users
to return per call?) but the loop that it controls seems to assume that
every user will have valid Linux attributes, which is not the case for
me. I think it will be c...