summaryrefslogtreecommitdiffstats
path: root/ipaserver/install
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2010-11-29 17:09:35 -0500
committerRob Crittenden <rcritten@redhat.com>2010-11-30 09:52:05 -0500
commit88133ab43cecc68248bb95014d1716aa5b74bc75 (patch)
tree1f7a553f4bf1fda4b0af8b4553a1860e058b9163 /ipaserver/install
parentdf28017eafc5c51f1fc136b2cae6169456d3c963 (diff)
downloadfreeipa-88133ab43cecc68248bb95014d1716aa5b74bc75.tar.gz
freeipa-88133ab43cecc68248bb95014d1716aa5b74bc75.tar.xz
freeipa-88133ab43cecc68248bb95014d1716aa5b74bc75.zip
Create user private groups with a uniqueid.
If we don't then we need to add it when a group is detached causing aci issues. I had to move where we create the UPG template until after the DS restart so the schema is available. ticket 542
Diffstat (limited to 'ipaserver/install')
-rw-r--r--ipaserver/install/dsinstance.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaserver/install/dsinstance.py b/ipaserver/install/dsinstance.py
index 158476257..ed60c6f8b 100644
--- a/ipaserver/install/dsinstance.py
+++ b/ipaserver/install/dsinstance.py
@@ -213,7 +213,6 @@ class DsInstance(service.Service):
self.step("enabling memberof plugin", self.__add_memberof_module)
self.step("enabling referential integrity plugin", self.__add_referint_module)
self.step("enabling winsync plugin", self.__add_winsync_module)
- self.step("configuring user private groups", self.__user_private_groups)
self.step("configuring replication version plugin", self.__config_version_module)
self.step("enabling IPA enrollment plugin", self.__add_enrollment_module)
self.step("enabling ldapi", self.__enable_ldapi)
@@ -224,6 +223,7 @@ class DsInstance(service.Service):
self.step("configuring ssl for ds instance", self.__enable_ssl)
self.step("configuring certmap.conf", self.__certmap_conf)
self.step("restarting directory server", self.__restart_instance)
+ self.step("configuring user private groups", self.__user_private_groups)
self.step("adding default layout", self.__add_default_layout)
self.step("adding delegation layout", self.__add_delegation_layout)
self.step("configuring Posix uid/gid generation as first master",