258abe1a23
We have a cgit server now, which means we should replace all references to github with references to git.openstack.org. Change-Id: I68ad1ce514fb4326c7d9940b5a84999af5b58562
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 -%>
|