19 lines
370 B
YAML

---
# Ensure certbot is installed.
- name: Server | Software | Certbot | FreeBSD
package:
name:
- py37-certbot
- py37-certbot-nginx
state: present
when: ansible_system == "FreeBSD"
- name: Server | Software | Certbot | Apt
package:
name:
- certbot
- python3-certbot-nginx
state: present
when: ansible_pkg_mgr == "apt"