ansible-role-letsencrypt-ac.../tasks/acmetool_deb.yml

17 lines
518 B
YAML

---
- name: Actions on Debian-like distributions
tags: ['letsencrypt', 'letsencrypt_acme_sh']
block:
- name: Install the socat utility, needed when using the http protocols to request the certificates
ansible.builtin.apt:
pkg: socat
state: present
cache_valid_time: 1800
- name: Install the git client if we are installing using git
ansible.builtin.apt:
pkg: git
state: present
cache_valid_time: 1800
when: letsencrypt_acme_sh_git_install