ipa-dns-install script fails

This patch fixes a typo in class Service, function __get_conn which
causes ipa-dns-install script to fail every time.

https://fedorahosted.org/freeipa/ticket/1065
This commit is contained in:
Martin Kosek
2011-03-08 14:44:19 +01:00
committed by Rob Crittenden
parent 8c50ea3da3
commit 1c741e6278

View File

@@ -298,7 +298,7 @@ class Service:
if dm_password: if dm_password:
conn.do_simple_bind(bindpw=dm_password) conn.do_simple_bind(bindpw=dm_password)
else: else:
conn.do_sasl_gssapi_bind_() conn.do_sasl_gssapi_bind()
except Exception, e: except Exception, e:
logging.debug("Could not connect to the Directory Server on %s: %s" % (fqdn, str(e))) logging.debug("Could not connect to the Directory Server on %s: %s" % (fqdn, str(e)))
raise e raise e