mirror of
https://github.com/geerlingguy/ansible-role-certbot.git
synced 2025-04-19 17:01:37 +02:00
12 lines
263 B
Django/Jinja
12 lines
263 B
Django/Jinja
#!/bin/bash
|
|
# {{ ansible_managed }}
|
|
|
|
{% for item in certbot_create_dns_renew_hook_services %}
|
|
|
|
{% if item == 'haproxy' %}
|
|
echo $RENEWED_LINEAGE > /tmp/RENEWED_LINEAGE.certbot.txt
|
|
echo $RENEWED_DOMAINS > /tmp/RENEWED_DOMAINS.certbot.txt
|
|
{% endif %}
|
|
|
|
{% endfor %}
|