mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 07:33:27 -06:00
8b3336ef55
Repoint cn=Managed Entries,cn=plugins,cn=config in common_setup Create: cn=Managed Entries,cn=etc,$SUFFIX Create: cn=Definitions,cn=Managed Entries,cn=etc,$SUFFIX Create: cn=Templates,cn=Managed Entries,cn=etc,$SUFFIX Create method for dynamically migrating any and all custom Managed Entries from the cn=config space into the new container. Separate the connection creation during update so that a restart can be performed to initialize changes before performing a delete. Add wait_for_open_socket() method in installutils https://fedorahosted.org/freeipa/ticket/1708
24 lines
850 B
Plaintext
24 lines
850 B
Plaintext
dn: cn=UPG Template,cn=Templates,cn=Managed Entries,cn=etc,$SUFFIX
|
|
changetype: add
|
|
objectclass: mepTemplateEntry
|
|
cn: UPG Template
|
|
mepRDNAttr: cn
|
|
mepStaticAttr: objectclass: posixgroup
|
|
mepStaticAttr: objectclass: ipaobject
|
|
mepStaticAttr: ipaUniqueId: autogenerate
|
|
mepMappedAttr: cn: $$uid
|
|
mepMappedAttr: gidNumber: $$uidNumber
|
|
mepMappedAttr: description: User private group for $$uid
|
|
|
|
# Changes to this definition need to be reflected in
|
|
# updates/20-user_private_groups.update
|
|
dn: cn=UPG Definition,cn=Definitions,cn=Managed Entries,cn=etc,$SUFFIX
|
|
changetype: add
|
|
objectclass: extensibleObject
|
|
cn: UPG Definition
|
|
originScope: cn=users,cn=accounts,$SUFFIX
|
|
originFilter: (&(objectclass=posixAccount)(!(description=__no_upg__)))
|
|
managedBase: cn=groups,cn=accounts,$SUFFIX
|
|
managedTemplate: cn=UPG Template,cn=Templates,cn=Managed Entries,cn=etc,$SUFFIX
|
|
|