mirror of
https://github.com/geerlingguy/ansible-role-certbot.git
synced 2025-04-20 09:11:43 +02:00
12 lines
252 B
Django/Jinja
12 lines
252 B
Django/Jinja
#!/bin/bash
|
|
|
|
{% for serv in certbot_standalone_stop_services %}
|
|
service {{ serv }} stop
|
|
{% endfor %}
|
|
|
|
{{ certbot_script }} renew {{ certbot_auto_renew_options }}
|
|
|
|
{% for serv in certbot_standalone_stop_services %}
|
|
service {{ serv }} start
|
|
{% endfor %}
|