roles/nginx: Add dependencies for certbot on Ubuntu 18.04

Taken from running the Let's Encrypt certbot-auto client on a freshly
installed Ubuntu 18.04 system.
This commit is contained in:
Alan Orth 2018-04-25 19:40:33 +03:00
parent ab27caf877
commit 12711afac9
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
2 changed files with 52 additions and 0 deletions

View File

@ -30,4 +30,49 @@ letsencrypt_certbot_dest: /opt/certbot-auto
# mainline is 1.15.x
nginx_version: mainline
# Dependencies of certbot-auto on Ubuntu 18.04 "bionic"
# taken after running certbot-auto on a clean install
letsencrypt_ubuntu_bionic_deps:
- augeas-lenses
- binutils
- binutils-common
- binutils-x86-64-linux-gnu
- cpp
- cpp-7
- gcc
- gcc-7
- gcc-7-base
- libasan4
- libatomic1
- libaugeas0
- libbinutils
- libc-dev-bin
- libc6-dev
- libcc1-0
- libcilkrts5
- libexpat1-dev
- libffi-dev
- libgcc-7-dev
- libgomp1
- libisl19
- libitm1
- liblsan0
- libmpc3
- libmpx2
- libpython-dev
- libpython2.7
- libpython2.7-dev
- libquadmath0
- libssl-dev
- libtsan0
- libubsan0
- linux-libc-dev
- python-dev
- python-pip-whl
- python-pkg-resources
- python-virtualenv
- python2.7-dev
- python3-virtualenv
- virtualenv
# vim: set ts=2 sw=2:

View File

@ -57,6 +57,13 @@
- zlib1g-dev
tags: packages
- name: Install certbot dependencies (Ubuntu 18.04)
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version is version_compare('18.04', '==')
apt: name={{ letsencrypt_ubuntu_bionic_deps }} state=present update_cache=yes
tags:
- packages
- letsencrypt
# dependencies certbot checks for on its first run
# taken from running certbot right after a clean Debian 9 install
- name: Install certbot dependencies (Debian 9)