From 1c741e62780e966cc0d1efc6541bd19e2c9e4e86 Mon Sep 17 00:00:00 2001 From: Martin Kosek Date: Tue, 8 Mar 2011 14:44:19 +0100 Subject: 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 --- ipaserver/install/service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipaserver') diff --git a/ipaserver/install/service.py b/ipaserver/install/service.py index ec4855f8..e97b7816 100644 --- a/ipaserver/install/service.py +++ b/ipaserver/install/service.py @@ -298,7 +298,7 @@ class Service: if dm_password: conn.do_simple_bind(bindpw=dm_password) else: - conn.do_sasl_gssapi_bind_() + conn.do_sasl_gssapi_bind() except Exception, e: logging.debug("Could not connect to the Directory Server on %s: %s" % (fqdn, str(e))) raise e -- cgit