summaryrefslogtreecommitdiff
path: root/templates/unit_file.epp
blob: 02e5c328a093f97ab9e6c6ef76fb43fa4ba5854b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<%- | Hash[String,Array[Hash]] $data
| -%>
# File managed by PUPPET
<%- $data.each |$key, $subs| { -%>
<%- $subs.each |$sub| { -%>

[<%= $key %>]
<%- $sub.each |$k, $v| { -%>
<%- if $v =~ Array { $v.each |$v| { -%>
<%= $k %>=<%= $v %>
<%- } } else { -%>
<%= $k %>=<%= $v %>
<%- } -%>
<%- }}} -%>