Skip to content

Commit

Permalink
Fix SSL CA certificate condition when tenant.config.httpd.ssl.caCerti…
Browse files Browse the repository at this point in the history
…ficateFile is not defined
  • Loading branch information
Tobias Richter committed Nov 24, 2020
1 parent 607663f commit 61dc4a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/setup_ssl_files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
- name: Add SSL CA certificate to list.
set_fact:
ssl_files: "{{ ssl_files + [ tenant.config.httpd.ssl.caCertificateFile ] }}"
when: tenant.config.httpd.ssl.caCertificateFile
when: tenant.config.httpd.ssl.caCertificateFile | default(false)

- name: Copy SSL files.
copy:
Expand Down

0 comments on commit 61dc4a9

Please sign in to comment.