diff options
author | Jan Dittberner <jandd@cacert.org> | 2019-08-17 11:35:18 +0200 |
---|---|---|
committer | Jan Dittberner <jandd@cacert.org> | 2019-08-17 11:35:18 +0200 |
commit | f2507930c612743ad1ce19a701233a0807b65ad1 (patch) | |
tree | fde62b8b4d17b3f4a45a1addc33b1b3d9ed120ba /sitemodules/profiles/templates | |
parent | 7371d5add09313828b87862f30026c903e4c30fd (diff) | |
download | cacert-puppet-f2507930c612743ad1ce19a701233a0807b65ad1.tar.gz cacert-puppet-f2507930c612743ad1ce19a701233a0807b65ad1.tar.xz cacert-puppet-f2507930c612743ad1ce19a701233a0807b65ad1.zip |
Fix line endings in configuration template
Diffstat (limited to 'sitemodules/profiles/templates')
-rw-r--r-- | sitemodules/profiles/templates/cacert_selfservice/config.yaml.epp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sitemodules/profiles/templates/cacert_selfservice/config.yaml.epp b/sitemodules/profiles/templates/cacert_selfservice/config.yaml.epp index 59c9b82..bdb3477 100644 --- a/sitemodules/profiles/templates/cacert_selfservice/config.yaml.epp +++ b/sitemodules/profiles/templates/cacert_selfservice/config.yaml.epp @@ -20,12 +20,11 @@ cookie_secret: <%= $cookie_secret %> csrf_key: <%= $csrf_key %> base_url: <%= $base_url %> https_address: <%= $listen_address %> -admin_emails: -<%- $admin_emails.each |$admin_email| { %> -- <%= $admin_email %> -<%- } %> +admin_emails:<% $admin_emails.each |$admin_email| { %> +- <%= $admin_email %><% } %> api_private_key: | -<% $api_signature_key_lines.each |$key_line| { %> <%= $key_line %><% } %> +<% $api_signature_key_lines.each |$key_line| { %> <%= $key_line %> +<% } -%> api_client_id: <%= $api_client_id %> api_ca_certificates: <%= $api_cas %> api_endpoint_url: <%= $api_endpoint_url %> |