From b59f7c070206de3e410d96a66889efa03c0152b0 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Tue, 23 Jul 2019 18:38:33 +0300 Subject: [PATCH] roles/nginx: Update certbot dependencies for Debian 10 Taken after a clean Debian 10 install on Linode. --- roles/nginx/tasks/letsencrypt.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/roles/nginx/tasks/letsencrypt.yml b/roles/nginx/tasks/letsencrypt.yml index fc50727..bd31549 100644 --- a/roles/nginx/tasks/letsencrypt.yml +++ b/roles/nginx/tasks/letsencrypt.yml @@ -20,19 +20,23 @@ when: ansible_distribution == 'Debian' and ansible_distribution_major_version is version_compare('10', '==') set_fact: certbot_dependencies: + - augeas-lenses - binutils - binutils-common - binutils-x86-64-linux-gnu - cpp - cpp-8 + - gcc - gcc-8 - libasan5 - libatomic1 + - libaugeas0 - libbinutils - libc-dev-bin - libc6-dev - libcc1-0 - libexpat1-dev + - libffi-dev - libgcc-8-dev - libgomp1 - libisl19 @@ -46,16 +50,20 @@ - libpython2.7 - libpython2.7-dev - libquadmath0 + - libssl-dev - libtsan0 - libubsan1 - linux-libc-dev + - python-dev - python-pip-whl - python-pkg-resources + - python-virtualenv - python2-dev - python2.7-dev - python3-distutils - python3-lib2to3 - python3-virtualenv + - virtualenv # Dependencies certbot checks for on its first run. I set them in a fact so that # I can pass the list directly to the apt module to install in one transaction.