From e1cf7b8d016fdb2e7c9f4f89dfda2b49ec39b7ea Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Fri, 14 Jan 2011 15:34:59 -0500 Subject: 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. --- ipaserver/install/dsinstance.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipaserver/install') 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) -- cgit