summaryrefslogtreecommitdiffstats
path: root/src/tests
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2016-02-08 15:11:19 +0100
committerJakub Hrozek <jhrozek@redhat.com>2016-02-09 06:09:58 +0100
commitbf472d2422599d14345e7cd9999289c26455c622 (patch)
tree648b8a66c4466dfff36042ecaf0449463b488825 /src/tests
parent4231a17e66e0809a9c3d42207b45f95429cbb46c (diff)
downloadsssd-bf472d2422599d14345e7cd9999289c26455c622.tar.gz
sssd-bf472d2422599d14345e7cd9999289c26455c622.tar.xz
sssd-bf472d2422599d14345e7cd9999289c26455c622.zip
intg: Change preference of openldap module path
The /usr/lib64 should be preffered path for searching binary modules for openldap backends. The /usr/lib/ should be used for storing no binary files on 64 bit platform e.g. scripts ... The current vresion of would choose /usr/lib/ even though /usr/lib64 contains real openldap modules. Reviewed-by: Nikolai Kondrashov <Nikolai.Kondrashov@redhat.com>
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/intg/ds_openldap.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/intg/ds_openldap.py b/src/tests/intg/ds_openldap.py
index ab313cb57..fb230a081 100644
--- a/src/tests/intg/ds_openldap.py
+++ b/src/tests/intg/ds_openldap.py
@@ -63,8 +63,8 @@ class DSOpenLDAP(DS):
def _setup_config(self):
"""Setup the instance initial configuration."""
- dist_lib_dir = first_dir("/usr/lib/openldap",
- "/usr/lib64/openldap",
+ dist_lib_dir = first_dir("/usr/lib64/openldap",
+ "/usr/lib/openldap",
"/usr/lib/ldap")
dist_conf_dir = first_dir("/etc/ldap",
"/etc/openldap")