I am attempting to use an LDIF to add user memberships to existing user groups.
Example:
dn: CN=Domain Users,CN=Users
changeType: Modify
add: member
member: CN=SomeCN1
member: CN=SomeCN2
member: CN=SomeCN3
member: CN=SomeCN4
All works fine, except when one of the memberships already exist. For example, if the SomeCN2 membership already exists, the entire statement fails and no memberships get added. This is a function of the "Modify" changeType... I've tried looking at how to format the LDIF differently, but can't seem to figure it out. I thought of a statement for each membership, but that will lead my file being enormous and difficult to manage and that's not ideal.
How can I structure my membership statements so all memberships get added, regardless if one of the memberships already exist?