summaryrefslogtreecommitdiffstats
path: root/ipaserver
diff options
context:
space:
mode:
authorNathaniel McCallum <npmccallum@redhat.com>2013-06-18 14:21:25 -0400
committerAlexander Bokovoy <abokovoy@redhat.com>2013-07-11 12:39:27 +0300
commit4bbbc11029aae9c29b9da2347ed1e905c885c0fd (patch)
tree6e7ba09cc271cacd7da2b032c6feaa02198d2933 /ipaserver
parenta209bb38aad66a079d62541e3b364d714cc3ed29 (diff)
downloadfreeipa-4bbbc11029aae9c29b9da2347ed1e905c885c0fd.tar.gz
freeipa-4bbbc11029aae9c29b9da2347ed1e905c885c0fd.tar.xz
freeipa-4bbbc11029aae9c29b9da2347ed1e905c885c0fd.zip
Permit reads to ipatokenRadiusProxyUser objects
This fixes an outstanding permissions issue from the OTP work. https://fedorahosted.org/freeipa/ticket/3693
Diffstat (limited to 'ipaserver')
-rw-r--r--ipaserver/install/plugins/update_anonymous_aci.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaserver/install/plugins/update_anonymous_aci.py b/ipaserver/install/plugins/update_anonymous_aci.py
index 1e75113fc..af4196a68 100644
--- a/ipaserver/install/plugins/update_anonymous_aci.py
+++ b/ipaserver/install/plugins/update_anonymous_aci.py
@@ -35,7 +35,7 @@ class update_anonymous_aci(PostUpdate):
aciname = u'Enable Anonymous access'
aciprefix = u'none'
ldap = self.obj.backend
- targetfilter = '(&(!(objectClass=ipaToken))(!(objectClass=ipatokenTOTP))(!(objectClass=ipatokenRadiusProxyUser))(!(objectClass=ipatokenRadiusConfiguration)))'
+ targetfilter = '(&(!(objectClass=ipaToken))(!(objectClass=ipatokenTOTP))(!(objectClass=ipatokenRadiusConfiguration)))'
filter = None
(dn, entry_attrs) = ldap.get_entry(api.env.basedn, ['aci'])