aboutsummaryrefslogtreecommitdiff
path: root/templates/ini.epp
diff options
context:
space:
mode:
Diffstat (limited to 'templates/ini.epp')
-rw-r--r--templates/ini.epp10
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/ini.epp b/templates/ini.epp
new file mode 100644
index 0000000..7d5cc92
--- /dev/null
+++ b/templates/ini.epp
@@ -0,0 +1,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 %>
+<%- } -%>
+<%- } -%>