Bug 526141
| Summary: | allow empty groups | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Retired] 389 | Reporter: | Rich Megginson <rmeggins> | ||||
| Component: | Schema | Assignee: | Rich Megginson <rmeggins> | ||||
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Viktor Ashirov <vashirov> | ||||
| Severity: | high | Docs Contact: | |||||
| Priority: | high | ||||||
| Version: | 1.2.1 | CC: | amsharma, nhosoi | ||||
| Target Milestone: | --- | ||||||
| Target Release: | --- | ||||||
| Hardware: | All | ||||||
| OS: | Linux | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2015-12-07 16:30:58 UTC | Type: | --- | ||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Embargoed: | |||||||
| Bug Depends On: | |||||||
| Bug Blocks: | 519216, 639035 | ||||||
| Attachments: |
|
||||||
|
Description
Rich Megginson
2009-09-29 02:55:45 UTC
Created attachment 363112 [details]
patch
To ssh://git.fedorahosted.org/git/389/ds.git
de00631..263e072 master -> master
commit 263e072493ec249ee0176193ee8bcb1b72255720
Author: Rich Megginson <rmeggins>
Date: Tue Sep 29 20:45:54 2009 -0600
Reviewed by: nhosoi (Thanks!)
Fix Description: Change groupOfNames and groupOfUniqueNames to allow empty
groups by changing the member/uniqueMember attribute from MUST to MAY.
Platforms tested: RHEL5 x86_64
Flag Day: no
Doc impact: no
[root@rheltest ~]# ldapadd -D "cn=Directory Manager" -w xxx -h localhost -p 389 << EOF dn: cn=rhgroup3,dc=corp,dc=example,dc=com objectClass: top objectClass: groupofuniquenames objectClass: ntGroup ntGroupDeleteGroup: true cn: rhgroup3 ntUserDomainId: rhgroup3 ntGroupType: -2147483646 ntUniqueId: 3 EOF adding new entry "cn=rhgroup3,dc=corp,dc=example,dc=com" This cn=rhgroup3 group is empty, tested groupofuniquenames for uniqueMember attribute is MAY. [root@rheltest ~]# ldapadd -D "cn=Directory Manager" -w xxx -h localhost -p 389 << EOF dn: cn=rhgroup4,dc=corp,dc=example,dc=com objectClass: top objectClass: groupofnames objectClass: ntGroup ntGroupDeleteGroup: true cn: rhgroup3 ntUserDomainId: rhgroup3 ntGroupType: -2147483646 ntUniqueId: 3 EOF adding new entry "cn=rhgroup4,dc=corp,dc=example,dc=com" This cn=rhgroup4 group is empty, tested groupofnames for Member attribute is MAY. |