summaryrefslogtreecommitdiffstats
path: root/ipaserver/install
diff options
context:
space:
mode:
authorSimo Sorce <ssorce@redhat.com>2011-01-14 15:34:59 -0500
committerSimo Sorce <ssorce@redhat.com>2011-01-14 17:26:48 -0500
commite1cf7b8d016fdb2e7c9f4f89dfda2b49ec39b7ea (patch)
tree4bd418b09f029f35eed4420b78c78ead65eb9be0 /ipaserver/install
parent12c67b99e0cc78be6fe9d95bd9fc0936c2c58795 (diff)
downloadfreeipa-e1cf7b8d016fdb2e7c9f4f89dfda2b49ec39b7ea.tar.gz
freeipa-e1cf7b8d016fdb2e7c9f4f89dfda2b49ec39b7ea.tar.xz
freeipa-e1cf7b8d016fdb2e7c9f4f89dfda2b49ec39b7ea.zip
Fix replica installation warnings
We were attempting to re-add these entries on the replicas too. Which were failing because these containers, obviously, already existed there.
Diffstat (limited to 'ipaserver/install')
-rw-r--r--ipaserver/install/dsinstance.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipaserver/install/dsinstance.py b/ipaserver/install/dsinstance.py
index a07e92303..859d5c8ff 100644
--- a/ipaserver/install/dsinstance.py
+++ b/ipaserver/install/dsinstance.py
@@ -210,8 +210,6 @@ class DsInstance(service.Service):
self.step("restarting directory server", self.__restart_instance)
def __common_post_setup(self):
- self.step("configuring user private groups", self.__user_private_groups)
- self.step("configuring netgroups from hostgroups", self.__host_nis_groups)
self.step("initializing group membership", self.init_memberof)
self.step("adding master entry", self.__add_master_entry)
self.step("configuring Posix uid/gid generation",
@@ -246,6 +244,8 @@ class DsInstance(service.Service):
self.step("adding default layout", self.__add_default_layout)
self.step("adding delegation layout", self.__add_delegation_layout)
self.step("adding replication acis", self.__add_replication_acis)
+ self.step("configuring user private groups", self.__user_private_groups)
+ self.step("configuring netgroups from hostgroups", self.__host_nis_groups)
if hbac_allow:
self.step("creating default HBAC rule allow_all", self.add_hbac)