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

>From 80172708559e4a545f0acf39967ef6fdd3e07dbf Mon Sep 17 00:00:00 2001
From: Martin Kosek <mko...@redhat.com>
Date: Tue, 8 Mar 2011 14:44:19 +0100
Subject: [PATCH] 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 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/ipaserver/install/service.py b/ipaserver/install/service.py
index ec4855f87df0eee8df1b59fb050fc80e7fc8c62d..e97b78167cdfb70399b7593ff21ecaa4e768f809 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
-- 
1.7.4

_______________________________________________
Freeipa-devel mailing list
Freeipa-devel@redhat.com
https://www.redhat.com/mailman/listinfo/freeipa-devel

Reply via email to