mirror of
https://github.com/geerlingguy/ansible-role-certbot.git
synced 2025-04-19 17:01:37 +02:00
12 lines
313 B
YAML
12 lines
313 B
YAML
---
|
|
- include_tasks: check-existence.yml
|
|
|
|
- name: Create webroot directory if it doesn't exist yet
|
|
file:
|
|
path: "{{ cert_item.webroot | default(certbot_webroot) }}"
|
|
state: directory
|
|
|
|
- name: Generate new certificate if one doesn't exist.
|
|
command: "{{ certbot_create_command }}"
|
|
when: not cert_exists
|