From 6a5c4763afad6fec2b49ffadbca9628a7ed162d5 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Thu, 11 Nov 2010 18:15:28 -0500 Subject: id ranges: change DNA configuration Change the way we specify the id ranges to force uid and gid ranges to always be the same. Add option to specify a maximum id. Change DNA configuration to use shared ranges so that masters and replicas can actually share the same overall range in a safe way. Configure replicas so that their default range is depleted. This will force them to fetch a range portion from the master on the first install. fixes: https://fedorahosted.org/freeipa/ticket/198 --- install/share/dna-posix.ldif | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 install/share/dna-posix.ldif (limited to 'install/share/dna-posix.ldif') diff --git a/install/share/dna-posix.ldif b/install/share/dna-posix.ldif deleted file mode 100644 index 2b77a0fd..00000000 --- a/install/share/dna-posix.ldif +++ /dev/null @@ -1,30 +0,0 @@ -# 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 - -- cgit