diff options
| author | Tomas Krizek <tkrizek@redhat.com> | 2016-10-06 08:51:10 +0200 |
|---|---|---|
| committer | Martin Basti <mbasti@redhat.com> | 2016-11-07 11:34:03 +0100 |
| commit | 4f1a6a177666c475156f496d3f7719b37e66a7b0 (patch) | |
| tree | 7701a20d5ce9a314107aa42dd90dcad0946be58a /install/tools | |
| parent | 60e38ecc7ff6b983f4f3af0a66c08eb3a3fda22d (diff) | |
| download | freeipa-4f1a6a177666c475156f496d3f7719b37e66a7b0.tar.gz freeipa-4f1a6a177666c475156f496d3f7719b37e66a7b0.tar.xz freeipa-4f1a6a177666c475156f496d3f7719b37e66a7b0.zip | |
ipaldap: merge gssapi_bind to LDAPClient
* Rename do_sasl_gssapi_bind to gssapi_bind
https://fedorahosted.org/freeipa/ticket/6461
Reviewed-By: Martin Basti <mbasti@redhat.com>
Reviewed-By: Jan Cholasta <jcholast@redhat.com>
Diffstat (limited to 'install/tools')
| -rwxr-xr-x | install/tools/ipa-managed-entries | 2 | ||||
| -rwxr-xr-x | install/tools/ipa-replica-manage | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/install/tools/ipa-managed-entries b/install/tools/ipa-managed-entries index 9dc7eae76..1c8f3f773 100755 --- a/install/tools/ipa-managed-entries +++ b/install/tools/ipa-managed-entries @@ -96,7 +96,7 @@ def main(): except errors.ACIError: sys.exit("Invalid credentials") else: - conn.do_sasl_gssapi_bind() + conn.gssapi_bind() except errors.ACIError: dirman_password = get_dirman_password() if dirman_password is None: diff --git a/install/tools/ipa-replica-manage b/install/tools/ipa-replica-manage index e7c30895b..2ec09a633 100755 --- a/install/tools/ipa-replica-manage +++ b/install/tools/ipa-replica-manage @@ -172,7 +172,7 @@ def list_replicas(realm, host, replica, dirman_passwd, verbose, nolookup=False): conn.simple_bind(bind_dn=ipaldap.DIRMAN_DN, bind_password=dirman_passwd) else: - conn.do_sasl_gssapi_bind() + conn.gssapi_bind() except Exception as e: print("Failed to connect to host '%s': %s" % (host, str(e))) return |
