blob: fb23fea6f44f34c92e25277ed1a2d6162c9d2be2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<%- |
String $ssh_passphrase = undef, Array[String] $git_branches = undef, Hash[String, String] $git_directories = undef
| -%>
# THIS FILE IS MANAGED BY PUPPET, MANUAL CHANGES WILL BE OVERWRITTEN AT THE
# NEXT PUPPET RUN.
[puppet-deploy]
ssh_passphrase=<%= $ssh_passphrase %>
branches=<%= $git_branches.join(",") %>
[branch-directories]
<% $git_directories.each |String $branch, String $directory| { -%>
<%= $branch %>=<%= $directory %>
<% } -%>
|