summaryrefslogtreecommitdiffstats
path: root/install/tools/ipa-replica-install
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2013-01-30 06:46:48 -0500
committerMartin Kosek <mkosek@redhat.com>2013-03-01 16:59:46 +0100
commit334a0cdcdc16ac50de2be1f751262bd87d0e5e86 (patch)
tree80882ce2180354b9c2f4520791381ac9d226f027 /install/tools/ipa-replica-install
parentf7a4cceb97f829ad2e1f8853c0e4414dcebf731e (diff)
downloadfreeipa-334a0cdcdc16ac50de2be1f751262bd87d0e5e86.tar.gz
freeipa-334a0cdcdc16ac50de2be1f751262bd87d0e5e86.tar.xz
freeipa-334a0cdcdc16ac50de2be1f751262bd87d0e5e86.zip
Remove IPAdmin.unbind_s(), keep unbind()
The unbind and unbind_s functions do the same thing (both are synchronous). In the low-level IPASimpleLDAPObject, unbind_s rather than unbind is kept. Part of the work for: https://fedorahosted.org/freeipa/ticket/2660
Diffstat (limited to 'install/tools/ipa-replica-install')
-rwxr-xr-xinstall/tools/ipa-replica-install2
1 files changed, 1 insertions, 1 deletions
diff --git a/install/tools/ipa-replica-install b/install/tools/ipa-replica-install
index b09cbca43..13c32607a 100755
--- a/install/tools/ipa-replica-install
+++ b/install/tools/ipa-replica-install
@@ -616,7 +616,7 @@ def main():
if conn and conn.isconnected():
conn.disconnect()
if replman and replman.conn:
- replman.conn.unbind_s()
+ replman.conn.unbind()
if options.skip_schema_check:
root_logger.info("Skipping CA DS schema check")