mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Compare resolver IP address with DNS IP address
We check the resolver against the resolver and DNS against DNS but not the resolver against DNS so if something is wrong in /etc/hosts we don't catch it and nasty connection messages occur. Also fix a problem where a bogus error message was being displayed because we were trying to close an unconnected LDAP connection. ticket 327
This commit is contained in:
@@ -133,7 +133,7 @@ def has_managed_entries(host_name, dm_password):
|
||||
logging.critical("Could not connect to the Directory Server on %s" % host_name)
|
||||
raise e
|
||||
finally:
|
||||
if conn:
|
||||
if conn.isconnected():
|
||||
conn.disconnect()
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user