From a6a83ec168a439949bc24c4fea7cdfdb6d276d0d Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Tue, 28 Feb 2012 13:28:14 -0500 Subject: [PATCH] Fix bad merge of not calling memberof task when re-initializing a replica https://fedorahosted.org/freeipa/ticket/2199 --- install/tools/ipa-replica-manage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/tools/ipa-replica-manage b/install/tools/ipa-replica-manage index fc362f42e..da327e5b9 100755 --- a/install/tools/ipa-replica-manage +++ b/install/tools/ipa-replica-manage @@ -415,7 +415,7 @@ def re_initialize(realm, thishost, fromhost, dirman_passwd): # If the agreement doesn't have nsDS5ReplicatedAttributeListTotal it means # we did not replicate memberOf, do so now. - if not entry[0].getValue('nsDS5ReplicatedAttributeListTotal'): + if not agreement.getValue('nsDS5ReplicatedAttributeListTotal'): ds = dsinstance.DsInstance(realm_name = realm, dm_password = dirman_passwd) ds.init_memberof()