82b9b59522
Non instance variable representation is deprecated so needs to be changed. This change changes varibles to their instance variable representation. See more details see: http://docs.puppetlabs.com/guides/templating.html Change-Id: Ib77827e01011ef6c0380c9ec7a9d147eafd8ce2f
23 lines
755 B
Plaintext
23 lines
755 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 -%>
|