summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/baseldap.py
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2010-12-02 16:29:26 -0500
committerRob Crittenden <rcritten@redhat.com>2010-12-02 16:29:26 -0500
commit6c393e53b01222ba7629ce86384d0adb34f7f275 (patch)
tree8351b0bbf7a394f15ec4d7b751a93778e4a95741 /ipalib/plugins/baseldap.py
parent78f1cf3629efae205d9eac49c7ab2eab4744c208 (diff)
downloadfreeipa-6c393e53b01222ba7629ce86384d0adb34f7f275.tar.gz
freeipa-6c393e53b01222ba7629ce86384d0adb34f7f275.tar.xz
freeipa-6c393e53b01222ba7629ce86384d0adb34f7f275.zip
This is the second half of a patch. Only the part that had to be
re-based got pushed for some reason. Use better description for group names in help and always prompt for members When running <foo>-[add|remove]-member completely interactively it didn't prompt for managing membership, it just reported that 0 members were handled which was rather confusing. This will work via a shell if you want to echo too: $ echo "" | ipa group-add-member g1 This returns 0 members because nothing is read for users or group members. $ echo -e "g1\nadmin\n" | ipa group-add-member This adds the user admin to the group g1. It adds it as a user because user membership is prompted for first. ticket 415
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 3894e18de..f6b992fdd 100644
--- a/ipalib/plugins/baseldap.py
+++ b/ipalib/plugins/baseldap.py
@@ -869,7 +869,7 @@ class LDAPModMember(LDAPQuery):
name = to_cli(ldap_obj_name)
doc = self.member_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)
def get_member_dns(self, **options):
dns = {}