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:
rcritten@redhat.com 2007-09-24 15:23:50 -04:00
parent 2035297e22
commit e41bb1d6fe

View File

@ -158,11 +158,14 @@ class IPAServer:
bindcert = None
bindkey = None
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:
bindca = self.bindca
bindcert = self.bindcert
bindkey = self.bindkey
port = self.sslport
return None
return _LDAPPool.getConn(self.host,port,bindca,bindcert,bindkey,proxy_dn,krbccache)