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.
This commit is contained in:
Rob Crittenden 2011-01-07 18:06:19 -05:00
parent 38c2656829
commit aea1bc7959

View File

@ -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: