summaryrefslogtreecommitdiffstats
path: root/ipaserver
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2011-01-07 18:06:19 -0500
committerRob Crittenden <rcritten@redhat.com>2011-01-07 18:08:01 -0500
commitaea1bc7959841403a11af3587d3a9091b05f6a5f (patch)
treedff44d59373acb149721cd04fdb255fd6dc5af93 /ipaserver
parent38c26568296790f5dda771726f74c8ff45c4925a (diff)
downloadfreeipa-aea1bc7959841403a11af3587d3a9091b05f6a5f.tar.gz
freeipa-aea1bc7959841403a11af3587d3a9091b05f6a5f.tar.xz
freeipa-aea1bc7959841403a11af3587d3a9091b05f6a5f.zip
Temporarily work around SSL connection issue causing installation to fail.
Not sure if this is an openldap-client, pem-nss or python-ldap problem yet but the installation is failing.
Diffstat (limited to 'ipaserver')
-rw-r--r--ipaserver/install/service.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/ipaserver/install/service.py b/ipaserver/install/service.py
index 6fcac24ce..27c55618e 100644
--- a/ipaserver/install/service.py
+++ b/ipaserver/install/service.py
@@ -284,7 +284,8 @@ class Service:
# If we are passed a password we'll use it as the DM password
# otherwise we'll do a GSSAPI bind.
try:
- conn = ipaldap.IPAdmin(fqdn, port=636, cacert=CACERT)
+# conn = ipaldap.IPAdmin(fqdn, port=636, cacert=CACERT)
+ conn = ipaldap.IPAdmin(fqdn, port=389)
if dm_password:
conn.do_simple_bind(bindpw=dm_password)
else: