diff options
author | Simo Sorce <ssorce@redhat.com> | 2012-01-04 13:50:19 -0500 |
---|---|---|
committer | Simo Sorce <ssorce@redhat.com> | 2012-01-13 10:23:53 -0500 |
commit | 869940ec4ae6bf43998dea911940c6504fafbbac (patch) | |
tree | ff32e7b9ae94c40cfde058442e735e83a384821f /install/tools/ipa-csreplica-manage | |
parent | 4ef3d7ba9b101553d79110b8823abef1f5ef178b (diff) | |
download | freeipa-ipa-2-1.tar.gz freeipa-ipa-2-1.tar.xz freeipa-ipa-2-1.zip |
Fix replication setupipa-2-1
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.
Diffstat (limited to 'install/tools/ipa-csreplica-manage')
-rwxr-xr-x | install/tools/ipa-csreplica-manage | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/tools/ipa-csreplica-manage b/install/tools/ipa-csreplica-manage index 3b08abd4b..40e6d101a 100755 --- a/install/tools/ipa-csreplica-manage +++ b/install/tools/ipa-csreplica-manage @@ -341,7 +341,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): |