summaryrefslogtreecommitdiffstats
path: root/ipalib/backend.py
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2012-02-15 17:06:54 +0100
committerMartin Kosek <mkosek@redhat.com>2012-02-15 17:08:33 +0100
commit2da6d6e7460b932f406b7f0632320433f9f98a85 (patch)
treeb48904578e589bfc942bd1f7150a57fd61e718c6 /ipalib/backend.py
parent95b1848f199a8f17936faac921d7b9495f90645b (diff)
downloadfreeipa-2da6d6e7460b932f406b7f0632320433f9f98a85.tar.gz
freeipa-2da6d6e7460b932f406b7f0632320433f9f98a85.tar.xz
freeipa-2da6d6e7460b932f406b7f0632320433f9f98a85.zip
Don't set delegation flag in client, we're using S4U2Proxy now
A forwardable ticket is still required but we no longer need to send the TGT to the IPA server. A new flag, --delegate, is available if the old behavior is required. Set the minimum n-v-r for mod_auth_kerb and krb5-server to pick up needed patches for S4U2Proxy to work. https://fedorahosted.org/freeipa/ticket/1098 https://fedorahosted.org/freeipa/ticket/2246
Diffstat (limited to 'ipalib/backend.py')
-rw-r--r--ipalib/backend.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/backend.py b/ipalib/backend.py
index 79f190832..7ed378e88 100644
--- a/ipalib/backend.py
+++ b/ipalib/backend.py
@@ -110,7 +110,7 @@ class Executioner(Backend):
self.Backend.ldap2.connect(ccache=ccache)
else:
self.Backend.xmlclient.connect(verbose=(self.env.verbose >= 2),
- fallback=self.env.fallback)
+ fallback=self.env.fallback, delegate=self.env.delegate)
if client_ip is not None:
setattr(context, "client_ip", client_ip)