summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/baseldap.py
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2011-04-13 17:45:07 -0400
committerMartin Kosek <mkosek@redhat.com>2011-04-15 13:12:16 +0200
commit740416c8fbe436a584e93f4c6486feca2e077f24 (patch)
treec617db9fd0c9cba57ef8c33a79b586641c9b41b3 /ipalib/plugins/baseldap.py
parentfe67680da5c3d7799884bdbd4d900070394dc5d0 (diff)
downloadfreeipa-740416c8fbe436a584e93f4c6486feca2e077f24.tar.gz
freeipa-740416c8fbe436a584e93f4c6486feca2e077f24.tar.xz
freeipa-740416c8fbe436a584e93f4c6486feca2e077f24.zip
Always ask members in LDAP*ReverseMember commands.
This changes the API but alwaysask is enforced on the client only so doesn't change the wire API so I'm not updating the API version. ticket 1081
Diffstat (limited to 'ipalib/plugins/baseldap.py')
-rw-r--r--ipalib/plugins/baseldap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugins/baseldap.py b/ipalib/plugins/baseldap.py
index 7090acc69..044e00e08 100644
--- a/ipalib/plugins/baseldap.py
+++ b/ipalib/plugins/baseldap.py
@@ -1485,7 +1485,7 @@ class LDAPModReverseMember(LDAPQuery):
name = to_cli(ldap_obj_name)
doc = self.reverse_param_doc % ldap_obj.object_name_plural
yield List('%s?' % name, cli_name='%ss' % name, doc=doc,
- label=ldap_obj.object_name)
+ label=ldap_obj.object_name, alwaysask=True)
class LDAPAddReverseMember(LDAPModReverseMember):