mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 08:51:50 -06:00
d9c4ba5a30
The DS plugin does config checking when adding new entries online so we are dropping the Posix subtree.
31 lines
721 B
Plaintext
31 lines
721 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: 1100
|
|
dnaInterval: 1
|
|
dnaMaxValue: 1000000000
|
|
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: 1100
|
|
dnaInterval: 1
|
|
dnaMaxValue: 1000000000
|
|
dnaMagicRegen: 999
|
|
dnaFilter: (objectclass=posixGroup)
|
|
dnaScope: $SUFFIX
|
|
|