diff options
author | Rob Crittenden <rcritten@redhat.com> | 2011-01-10 14:21:45 -0500 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2011-01-11 10:23:31 -0500 |
commit | c7789199f9541844bf8c36a85311ba957a1c1dcb (patch) | |
tree | 2c1886530bb4465e961796f25da39bcb6bab2ee5 /ipalib/plugins/baseldap.py | |
parent | 06179dc105239496a7b0e55fc4a19ce576033565 (diff) | |
download | freeipa-c7789199f9541844bf8c36a85311ba957a1c1dcb.tar.gz freeipa-c7789199f9541844bf8c36a85311ba957a1c1dcb.tar.xz freeipa-c7789199f9541844bf8c36a85311ba957a1c1dcb.zip |
Fix output of failed managedby hosts, allow a host to manage itself.
The output problem was a missing label for failed managedby.
This also fixes a call to print_entry that was missing the flags argument.
Add a flag to specify whether a group can be a member of itself, defaulting
to False.
ticket 708
Diffstat (limited to 'ipalib/plugins/baseldap.py')
-rw-r--r-- | ipalib/plugins/baseldap.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ipalib/plugins/baseldap.py b/ipalib/plugins/baseldap.py index fbe4fcece..e7ccb7724 100644 --- a/ipalib/plugins/baseldap.py +++ b/ipalib/plugins/baseldap.py @@ -1002,6 +1002,7 @@ class LDAPAddMember(LDAPModMember): """ member_param_doc = 'comma-separated list of %s to add' member_count_out = ('%i member added.', '%i members added.') + allow_same = False has_output = ( output.Entry('result'), @@ -1039,7 +1040,7 @@ class LDAPAddMember(LDAPModMember): if not m_dn: continue try: - ldap.add_entry_to_group(m_dn, dn, attr) + ldap.add_entry_to_group(m_dn, dn, attr, allow_same=self.allow_same) except errors.PublicError, e: ldap_obj = self.api.Object[ldap_obj_name] failed[attr][ldap_obj_name].append(( |