mirror of
https://github.com/geerlingguy/ansible-role-certbot.git
synced 2025-04-20 09:11:43 +02:00
12 lines
270 B
YAML
12 lines
270 B
YAML
---
|
|
- name: Create Certbot directory
|
|
file:
|
|
path: "{{ certbot_dir }}"
|
|
state: "directory"
|
|
|
|
- name: Download Certbot into configured directory
|
|
get_url:
|
|
url: "{{ certbot_source_url }}"
|
|
dest: "{{ certbot_script }}"
|
|
force: "{{ certbot_keep_updated }}"
|