[issue14748] spwd.getspall() is returning LDAP (non local) users too

2013-07-05 Thread Christian Heimes
Christian Heimes added the comment: Dave has explained the problem very well. I like to add one thing. The module just returns what your operation system's getspent() API returns. http://linux.die.net/man/3/getspnam Please ask your vendor for more details, too. -- nosy:

[issue14748] spwd.getspall() is returning LDAP (non local) users too

2012-05-08 Thread halfie
New submission from halfie assie...@gmail.com: spwd.getspall() is returning LDAP (non local) users too. On RHEL 6.2 machine with LDAP authentication configured, spwd.getspall() is returning LDAP (non local) users too. On a similarly configured CentOS 6.2 machine, spwd.getspall() is returning

[issue14748] spwd.getspall() is returning LDAP (non local) users too

2012-05-08 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +dmalcolm ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14748 ___ ___ Python-bugs-list mailing

[issue14748] spwd.getspall() is returning LDAP (non local) users too

2012-05-08 Thread Dave Malcolm
Dave Malcolm dmalc...@redhat.com added the comment: Like passwd and group information, the shadow password entries are pulled through libc's Name Service Switch and modules for it, depending on configuration. See man nsswitch.conf. Hence this is likely to be a configuration difference