f52d2eb2b6
This reverts commit 82b9b59522
.
Change-Id: I746d7ae57802dc76618db9024a0cf94c43774c02
23 lines
754 B
Plaintext
23 lines
754 B
Plaintext
# This file is managed by puppet.
|
|
# https://git.openstack.org/cgit/openstack-infra/config
|
|
|
|
<% replication.each do |replication| -%>
|
|
[remote "<%= replication['name'] %>"]
|
|
url = <%= replication['url'] %>${name}.git
|
|
<% if replication['replicationDelay'] != nil -%>
|
|
replicationDelay = <%= replication['replicationDelay'] %>
|
|
<% end -%>
|
|
<% if replication['threads'] != nil -%>
|
|
threads = <%= replication['threads'] %>
|
|
<% end -%>
|
|
<% if replication['authGroup'] != nil -%>
|
|
authGroup = <%= replication['authGroup'] %>
|
|
<% end -%>
|
|
<% if replication['replicatePermissions'] != nil -%>
|
|
replicatePermissions = <%= replication['replicatePermissions'] %>
|
|
<% end -%>
|
|
<% if replication['mirror'] != nil -%>
|
|
mirror = <%= replication['mirror'] %>
|
|
<% end -%>
|
|
<% end -%>
|