mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-28 01:41:14 -06:00
0c28978a8d
Resolves 522179
31 lines
771 B
Plaintext
31 lines
771 B
Plaintext
# add plugin configuration for posix users
|
|
|
|
dn: cn=Posix Accounts,cn=Distributed Numeric Assignment Plugin,cn=plugins,cn=config
|
|
changetype: add
|
|
objectclass: top
|
|
objectclass: extensibleObject
|
|
cn: Posix Accounts
|
|
dnaType: uidNumber
|
|
dnaNextValue: eval($UIDSTART+1)
|
|
dnaInterval: 1
|
|
dnaMaxValue: eval($UIDSTART+100000)
|
|
dnaMagicRegen: 999
|
|
dnaFilter: (objectclass=posixAccount)
|
|
dnaScope: $SUFFIX
|
|
|
|
# add plugin configuration for posix groups
|
|
|
|
dn: cn=Posix Groups,cn=Distributed Numeric Assignment Plugin,cn=plugins,cn=config
|
|
changetype: add
|
|
objectclass: top
|
|
objectclass: extensibleObject
|
|
cn: Posix Groups
|
|
dnaType: gidNumber
|
|
dnaNextValue: eval($GIDSTART+3)
|
|
dnaInterval: 1
|
|
dnaMaxValue: eval($GIDSTART+100000)
|
|
dnaMagicRegen: 999
|
|
dnaFilter: (objectclass=posixGroup)
|
|
dnaScope: $SUFFIX
|
|
|