From 0d3cd4c3840c1e67adc85f17debe0f6c5f04b309 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Wed, 4 Jan 2012 13:50:19 -0500 Subject: Fix replication setup Changes to add a cs-replication management tool mistakenly always set a flag that caused replicas to not add the list of attribute we exclude from replication. --- install/tools/ipa-csreplica-manage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install') diff --git a/install/tools/ipa-csreplica-manage b/install/tools/ipa-csreplica-manage index 0178f18b..ac39b70f 100755 --- a/install/tools/ipa-csreplica-manage +++ b/install/tools/ipa-csreplica-manage @@ -334,7 +334,7 @@ def add_link(realm, replica1, replica2, dirman_passwd, options): except Exception, e: sys.exit("Failed to get data from '%s': %s" % (replica1, convert_error(e))) - repl1.setup_replication(replica2, PORT, 0, "cn=Directory Manager", dirman_passwd, True) + repl1.setup_replication(replica2, PORT, 0, "cn=Directory Manager", dirman_passwd, True, True) print "Connected '%s' to '%s'" % (replica1, replica2) def re_initialize(realm, options): -- cgit