mirror of
https://github.com/geerlingguy/ansible-role-certbot.git
synced 2025-04-19 17:01:37 +02:00
This plugin supports issuing/renewing certificates without needing to stop/start Apache's daemon. This change also adds a variable to allow override default letsencrypt config directory (/etc/letsencrypt).
12 lines
323 B
YAML
12 lines
323 B
YAML
---
|
|
- name: Install Certbot.
|
|
package: "name={{ certbot_package }} state=present"
|
|
|
|
- name: Install Certbot Extra Packages.
|
|
package: "name={{ certbot_extra_packages }} state=present"
|
|
when: certbot_extra_packages | length > 0
|
|
|
|
- name: Set Certbot script variable.
|
|
set_fact:
|
|
certbot_script: "{{ certbot_package }}"
|