ansible-infra/playbooks/roles/certbot/templates/renewal_deploy_hook_commands.sh.j2
June 95a3901935
certbot: add possibility to specify commands to run on new certs
This makes it possible to e.g. reload nginx when new certificates are
present.
2024-01-28 03:29:39 +01:00

5 lines
87 B
Django/Jinja

#!/bin/bash
{% for command in certbot__new_cert_commands %}
{{ command }}
{% endfor %}