aboutsummaryrefslogtreecommitdiff
path: root/templates/ini.epp
blob: 7d5cc92168a3c1004b606b43aa948127cfbdb67f (plain)
1
2
3
4
5
6
7
8
9
10
<%- | Hash[String, Any] $values
| -%>
<%# This is technically not a proper ini-file, since it lacks headersa.
    Certbot however calls them ini files, so we do to. -%>
# File managed by Puppet
<%- $values.each |$key, $value| { -%>
<%- unless $value == undef { -%>
<%= $key %> = <%= $value %>
<%- } -%>
<%- } -%>