Update to 2022-07-01 17:00

This commit is contained in:
Daniel Berteaud 2022-07-01 17:00:17 +02:00
parent 4f47a3717c
commit 1fba55929e

View File

@ -41,34 +41,20 @@ letsencrypt_certs: []
# RENEW_DAYS: 20 # RENEW_DAYS: 20
# KEYSIZE: 3072 # KEYSIZE: 3072
letsencrypt_empty_hook: |
#!/bin/bash -e
# Managed by ansible, manual modifications will be lost
exit 0
letsencrypt_base_hooks: letsencrypt_base_hooks:
clean_challenge: | clean_challenge: "{{ letsencrypt_empty_hook }}"
#!/bin/bash -e deploy_cert: "{{ letsencrypt_empty_hook }}"
# Managed by ansible, manual modifications will be lost deploy_challenge: "{{ letsencrypt_empty_hook }}"
deploy_cert: | exit_hook: "{{ letsencrypt_empty_hook }}"
#!/bin/bash -e generate_csr: "{{ letsencrypt_empty_hook }}"
# Managed by ansible, manual modifications will be lost invalid_challenge: "{{ letsencrypt_empty_hook }}"
deploy_challenge: | request_failure: "{{ letsencrypt_empty_hook }}"
#!/bin/bash -e startup_hook: "{{ letsencrypt_empty_hook }}"
# Managed by ansible, manual modifications will be lost unchanged_cert: "{{ letsencrypt_empty_hook }}"
exit_hook: |
#!/bin/bash -e
# Managed by ansible, manual modifications will be lost
generate_csr: |
#!/bin/bash -e
# Managed by ansible, manual modifications will be lost
invalid_challenge: |
#!/bin/bash -e
# Managed by ansible, manual modifications will be lost
request_failure: |
#!/bin/bash -e
# Managed by ansible, manual modifications will be lost
startup_hook: |
#!/bin/bash -e
# Managed by ansible, manual modifications will be lost
unchanged_cert: |
#!/bin/bash -e
# Managed by ansible, manual modifications will be lost
letsencrypt_extra_hooks: {} letsencrypt_extra_hooks: {}
letsencrypt_hooks: "{{ letsencrypt_base_hooks | combine(letsencrypt_extra_hooks, recursive=True) }}" letsencrypt_hooks: "{{ letsencrypt_base_hooks | combine(letsencrypt_extra_hooks, recursive=True) }}"