Ver a proveniência
Merge pull request #944 from aaronraimist/blank-or-none
Also check if matrix_ssl_lets_encrypt_support_email is blank
pull/945/head
Slavi Pantaleev
há 5 anos
committed by
GitHub
ascendente
cometimento
f4d0abbaf5
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados
ID da chave GPG: 4AEE18F83AFDEB23
1 ficheiros alterados com
2 adições e
2 eliminações
-
roles/matrix-nginx-proxy/tasks/validate_config.yml
|
|
|
@@ -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'" |