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

13 lines
202 B
YAML

---
- name: Install certbot
become: true
apt:
name: certbot
state: present
update_cache: yes
- name: Create acme dir
become: true
file:
path: /var/www/acme
state: directory