Merge pull request #944 from aaronraimist/blank-or-none

Also check if matrix_ssl_lets_encrypt_support_email is blank
This commit is contained in:
Slavi Pantaleev 2021-03-17 08:08:02 +02:00 committed by GitHub
commit f4d0abbaf5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,8 +40,8 @@
- name: Fail if required variables are undefined
fail:
msg: "Detected an undefined required variable"
msg: "The `{{ item }}` variable must be defined and have a non-null value"
with_items:
- "matrix_ssl_lets_encrypt_support_email"
when: "vars[item] is none"
when: "vars[item] == '' or vars[item] is none"
when: "matrix_ssl_retrieval_method == 'lets-encrypt'"