summaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorMartin Kosek <mkosek@redhat.com>2011-10-25 15:34:45 +0200
committerMartin Kosek <mkosek@redhat.com>2011-11-16 08:52:40 +0100
commit70cb8bf35550189ebaed4fe088aad653ed0781aa (patch)
treea61c71a55f498bad56887e8d4ddaa24ce7912a6f /install
parent16b18135d9da45309537d40e6b88ae2e5435da97 (diff)
downloadfreeipa-70cb8bf35550189ebaed4fe088aad653ed0781aa.tar.gz
freeipa-70cb8bf35550189ebaed4fe088aad653ed0781aa.tar.xz
freeipa-70cb8bf35550189ebaed4fe088aad653ed0781aa.zip
Fix ipa-managed-entries bind procedure
Make sure that when Directory Manager password is entered, we directly do a simple bind instead of trying binding via GSSAPI. Also capture ldap.INVALID_CREDENTIALS exception and provide nice error message than crash. https://fedorahosted.org/freeipa/ticket/1927
Diffstat (limited to 'install')
-rwxr-xr-xinstall/tools/ipa-managed-entries20
1 files changed, 13 insertions, 7 deletions
diff --git a/install/tools/ipa-managed-entries b/install/tools/ipa-managed-entries
index 610b19420..92f02ef59 100755
--- a/install/tools/ipa-managed-entries
+++ b/install/tools/ipa-managed-entries
@@ -106,15 +106,21 @@ def main():
try:
filter = '(objectClass=extensibleObject)'
conn = ipaldap.IPAdmin(host, 636, cacert=CACERT)
- conn.do_sasl_gssapi_bind()
- except ldap.LOCAL_ERROR:
+
if options.dirman_password:
- dirman_password = options.dirman_password
+ conn.do_simple_bind(bindpw=options.dirman_password)
else:
- dirman_password = get_dirman_password()
- if dirman_password is None:
- sys.exit("\nDirectory Manager password required")
- conn.do_simple_bind(bindpw=dirman_password)
+ conn.do_sasl_gssapi_bind()
+ except ldap.LOCAL_ERROR:
+ dirman_password = get_dirman_password()
+ if dirman_password is None:
+ sys.exit("\nDirectory Manager password required")
+ try:
+ conn.do_simple_bind(bindpw=dirman_password)
+ except ldap.INVALID_CREDENTIALS:
+ sys.exit("Invalid credentials")
+ except ldap.INVALID_CREDENTIALS:
+ sys.exit("Invalid credentials")
except errors.ExecutionError, lde:
sys.exit("An error occurred while connecting to the server.\n%s\n" %
str(lde))