mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Don't fall back on proxy authentication. We don't generate the certificates
anymore and that failure just causes more confusion.
This commit is contained in:
parent
2035297e22
commit
e41bb1d6fe
@ -158,11 +158,14 @@ class IPAServer:
|
|||||||
bindcert = None
|
bindcert = None
|
||||||
bindkey = None
|
bindkey = None
|
||||||
port = self.port
|
port = self.port
|
||||||
|
# Fallback to use proxy authentication. We no longer support this method
|
||||||
|
# else:
|
||||||
|
# bindca = self.bindca
|
||||||
|
# bindcert = self.bindcert
|
||||||
|
# bindkey = self.bindkey
|
||||||
|
# port = self.sslport
|
||||||
else:
|
else:
|
||||||
bindca = self.bindca
|
return None
|
||||||
bindcert = self.bindcert
|
|
||||||
bindkey = self.bindkey
|
|
||||||
port = self.sslport
|
|
||||||
|
|
||||||
return _LDAPPool.getConn(self.host,port,bindca,bindcert,bindkey,proxy_dn,krbccache)
|
return _LDAPPool.getConn(self.host,port,bindca,bindcert,bindkey,proxy_dn,krbccache)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user