self-hosting/roles/certbot/tasks/main.yml

14 lines
202 B
YAML
Raw Normal View History

2022-03-12 19:42:26 +01:00
---
- name: Install certbot
become: true
apt:
name: certbot
state: present
update_cache: yes
2022-03-13 10:05:11 +01:00
- name: Create acme dir
become: true
file:
path: /var/www/acme
state: directory