Comment 14 for bug 1387594

Revision history for this message
Matt Ezell (ezellma) wrote :

I ran tests on an IBM 8247-22L using both Utopic and Trusty for ppc64el. Details of the test follow, but the new packages in [utopic,trusty]-proposed fix the segfault issue.

#### For Utopic ####
root@crest2:~# lsb_release -rc
Release: 14.10
Codename: utopic
# Current working version using a vivid package
root@crest2:~# dpkg -l libnss-ldap|grep ii
ii libnss-ldap:ppc64el 265-3ubuntu2 ppc64el NSS module for using LDAP as a naming service
root@crest2:~# getent passwd|wc -l ; getent group|wc -l
52
16849
# Test current release
root@crest2:~# apt-get install libnss-ldap=264-2.2ubuntu4
...
root@crest2:~# getent passwd
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
... other local users ...
Segmentation fault
root@crest2:~# getent group
root:x:0:
daemon:x:1:
... other local groups ...
Segmentation fault
# Try new version
root@crest2:~# apt-get install libnss-ldap=264-2.2ubuntu4.14.10.1
...
root@crest2:~# getent passwd|wc -l ; getent group|wc -l
52
16849
# Success!

#### For Trusty ####
root@crest2:~# lsb_release -rcd
Description: Ubuntu 14.04.1 LTS
Release: 14.04
Codename: trusty
# Test current release
root@crest2:~# apt-get install libnss-ldap=264-2.2ubuntu4
...
root@crest2:~# getent passwd
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
... other local users ...
Segmentation fault
root@crest2:~# getent group
root:x:0:
daemon:x:1:
... other local groups ...
Segmentation fault
# Try new version
root@crest2:~# apt-get install libnss-ldap=264-2.2ubuntu4.14.04.1
...
root@crest2:~# getent passwd|wc -l ; getent group|wc -l
52
16849
# Success!