summaryrefslogtreecommitdiffstats
path: root/ipaserver
diff options
context:
space:
mode:
authorMartin Kosek <mkosek@redhat.com>2011-03-08 14:44:19 +0100
committerRob Crittenden <rcritten@redhat.com>2011-03-08 10:24:53 -0500
commit1c741e62780e966cc0d1efc6541bd19e2c9e4e86 (patch)
treec7909dd762ceb61ca7b095154a9e9993a7625ae3 /ipaserver
parent8c50ea3da319a43bb9a7627b598566f3987be5f5 (diff)
downloadfreeipa-1c741e62780e966cc0d1efc6541bd19e2c9e4e86.tar.gz
freeipa-1c741e62780e966cc0d1efc6541bd19e2c9e4e86.tar.xz
freeipa-1c741e62780e966cc0d1efc6541bd19e2c9e4e86.zip
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
Diffstat (limited to 'ipaserver')
-rw-r--r--ipaserver/install/service.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaserver/install/service.py b/ipaserver/install/service.py
index ec4855f87..e97b78167 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