Bug 1361321
Summary: | Duplicate collation entries | ||
---|---|---|---|
Product: | Red Hat Enterprise Linux 7 | Reporter: | Noriko Hosoi <nhosoi> |
Component: | 389-ds-base | Assignee: | Noriko Hosoi <nhosoi> |
Status: | CLOSED ERRATA | QA Contact: | Viktor Ashirov <vashirov> |
Severity: | unspecified | Docs Contact: | |
Priority: | unspecified | ||
Version: | 7.3 | CC: | kbanerje, nkinder, rmeggins |
Target Milestone: | rc | ||
Target Release: | --- | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | 389-ds-base-1.3.5.10-6.el7 | Doc Type: | If docs needed, set a value |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2016-11-03 20:44:43 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
Noriko Hosoi
2016-07-28 19:52:39 UTC
How to verify: HOST=YOUR_HOST PORT=YOUR_PORT count=`ldapsearch -LLLx -h $HOST -p $PORT -D 'cn=directory manager' -W -b "cn=schema" -o ldif-wrap=no matchingRules | egrep "case" | awk '{print $5}' | sort | wc -l` uniqcount=`ldapsearch -LLLx -h $HOST -p $PORT -D 'cn=directory manager' -W -b "cn=schema" -o ldif-wrap=no matchingRules | egrep "case" | awk '{print $5}' | sort | uniq | wc -l` if [ $count -eq $uniqcount ]; then echo PASSED else echo FAILED fi Bug Verified 389-ds-base-1.3.5.10-7.el7.x86_64 389-ds-base-libs-1.3.5.10-7.el7.x86_64 ipa-server-4.4.0-5.el7.x86_64 ipa-common-4.4.0-5.el7.noarch ipa-admintools-4.4.0-5.el7.noarch step 1) install ipa step 2) run the script HOST=test.server.rrr.com PORT=389 count=`ldapsearch -LLLx -h $HOST -p $PORT -D 'cn= Directory Manager' -w test1234 -b "cn=schema" -o ldif-wrap=no matchingRules | egrep "case" | awk '{print $5}' | sort | wc -l` uniqcount=`ldapsearch -LLLx -h $HOST -p $PORT -D 'cn= Directory Manager' -w test1234 -b "cn=schema" -o ldif-wrap=no matchingRules | egrep "case" | awk '{print $5}' | sort | uniq | wc -l` if [ $count -eq $uniqcount ]; then echo PASSED else echo FAILED fi Result "PASSED" Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://rhn.redhat.com/errata/RHSA-2016-2594.html |