mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-30 10:47:08 -06:00
201ffc07bd
The Managed Entries plugin configurations weren't being created on replica installs. The templates were there but the cn=config portions were not. This patch adds them as updates. The template portion will be added in the initial replication. ticket 1222
24 lines
777 B
Plaintext
24 lines
777 B
Plaintext
dn: cn=UPG Template,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=Managed Entries,cn=plugins,cn=config
|
|
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=etc,$SUFFIX
|
|
|