9 lines
235 B
Bash
9 lines
235 B
Bash
#!/bin/bash
|
|
# {{ansible_managed}}
|
|
{% for proxysite in proxy %}
|
|
certbot renew --nginx --cert-name {{ proxysite.domain }}
|
|
{% endfor %}
|
|
{% for staticsite in static %}
|
|
certbot renew --nginx --cert-name {{ staticsite.domain }}
|
|
{% endfor %}
|