summaryrefslogtreecommitdiffstats
path: root/install/tools/ipa-replica-manage
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2012-02-28 13:28:14 -0500
committerRob Crittenden <rcritten@redhat.com>2012-02-27 20:23:10 -0500
commita6a83ec168a439949bc24c4fea7cdfdb6d276d0d (patch)
tree37cd4c8ce64ba44980e14e7f65bc0e339cdd0f7f /install/tools/ipa-replica-manage
parent372d67ae81403cb919e3617563e8950e711623a1 (diff)
downloadfreeipa-a6a83ec168a439949bc24c4fea7cdfdb6d276d0d.tar.gz
freeipa-a6a83ec168a439949bc24c4fea7cdfdb6d276d0d.tar.xz
freeipa-a6a83ec168a439949bc24c4fea7cdfdb6d276d0d.zip
Fix bad merge of not calling memberof task when re-initializing a replica
https://fedorahosted.org/freeipa/ticket/2199
Diffstat (limited to 'install/tools/ipa-replica-manage')
-rwxr-xr-xinstall/tools/ipa-replica-manage2
1 files changed, 1 insertions, 1 deletions
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()