summaryrefslogtreecommitdiff
path: root/templates/ini.epp
blob: 59c41d8053b2c772b35cadc8daedcfd50313f914 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<%- | Hash[String, Hash[String, Any]] $sections,
| -%>
<%- $sections.each |$header, $values| { -%>
  <%- $values.each |$key, $value| { -%>
    <%- if $value == undef { -%>
    <%- } elsif $value =~ Array { -%>
<%= $key %>=<%= $value.join(' ') %>
    <%- } else { -%>
<%= $key %>=<%= $value %>
    <%- } -%>
  <%- } -%>
<%- } -%>