From aea1bc7959841403a11af3587d3a9091b05f6a5f Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Fri, 7 Jan 2011 18:06:19 -0500 Subject: 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. --- ipaserver/install/service.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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: -- cgit