mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-28 01:41:14 -06:00
9c34dde165
By default increment by one but set the maximum value to one million. when installing a replica change values to start from 1 million +1 and cap it to 2 million and so on for any other replica.
40 lines
840 B
Plaintext
40 lines
840 B
Plaintext
# add container for posix configuration
|
|
|
|
dn: cn=Posix,cn=ipa-dna,cn=plugins,cn=config
|
|
changetype: add
|
|
objectclass: top
|
|
objectclass: nsContainer
|
|
objectclass: extensibleObject
|
|
cn: Posix
|
|
|
|
# add plugin configuration for posix users
|
|
|
|
dn: cn=Accounts,cn=Posix,cn=ipa-dna,cn=plugins,cn=config
|
|
changetype: add
|
|
objectclass: top
|
|
objectclass: extensibleObject
|
|
cn: Accounts
|
|
dnaType: uidNumber
|
|
dnaNextValue: 1100
|
|
dnaInterval: 1
|
|
dnaMaxValue: 1000000000
|
|
dnaMagicRegen: 999
|
|
dnaFilter: (objectclass=posixAccount)
|
|
dnaScope: $SUFFIX
|
|
|
|
# add plugin configuration for posix groups
|
|
|
|
dn: cn=Groups,cn=Posix,cn=ipa-dna,cn=plugins,cn=config
|
|
changetype: add
|
|
objectclass: top
|
|
objectclass: extensibleObject
|
|
cn: Groups
|
|
dnaType: gidNumber
|
|
dnaNextValue: 1100
|
|
dnaInterval: 1
|
|
dnaMaxValue: 1000000000
|
|
dnaMagicRegen: 999
|
|
dnaFilter: (objectclass=posixGroup)
|
|
dnaScope: $SUFFIX
|
|
|