roles/nginx: Rename Let's Encrypt dependency lists

This commit is contained in:
Alan Orth 2018-04-26 08:26:58 +03:00
parent e50f413f5e
commit c608331e3c
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
2 changed files with 6 additions and 6 deletions

View File

@ -32,7 +32,7 @@ nginx_version: mainline
# Dependencies of certbot-auto on Ubuntu 16.04 "xenial" # Dependencies of certbot-auto on Ubuntu 16.04 "xenial"
# taken after running certbot-auto on a clean install # taken after running certbot-auto on a clean install
letsencrypt_ubuntu_xenial_deps: letsencrypt_deps_ubuntu_xenial:
- augeas-doc - augeas-doc
- augeas-tools - augeas-tools
- binutils - binutils
@ -72,7 +72,7 @@ letsencrypt_ubuntu_xenial_deps:
# Dependencies of certbot-auto on Ubuntu 18.04 "bionic" # Dependencies of certbot-auto on Ubuntu 18.04 "bionic"
# taken after running certbot-auto on a clean install # taken after running certbot-auto on a clean install
letsencrypt_ubuntu_bionic_deps: letsencrypt_deps_ubuntu_bionic:
- augeas-lenses - augeas-lenses
- binutils - binutils
- binutils-common - binutils-common
@ -117,7 +117,7 @@ letsencrypt_ubuntu_bionic_deps:
# Dependencies of certbot-auto on Debian 9 "stretch" # Dependencies of certbot-auto on Debian 9 "stretch"
# taken after running certbot-auto on a clean install # taken after running certbot-auto on a clean install
letsencrypt_debian_stretch_deps: letsencrypt_deps_debian_stretch:
- augeas-doc - augeas-doc
- augeas-tools - augeas-tools
- autoconf - autoconf

View File

@ -19,21 +19,21 @@
- name: Install certbot dependencies (Ubuntu 16.04) - name: Install certbot dependencies (Ubuntu 16.04)
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version is version_compare('16.04', '==') when: ansible_distribution == 'Ubuntu' and ansible_distribution_version is version_compare('16.04', '==')
apt: name={{ letsencrypt_ubuntu_xenial_deps }} state=present update_cache=yes apt: name={{ letsencrypt_deps_ubuntu_xenial }} state=present update_cache=yes
tags: tags:
- packages - packages
- letsencrypt - letsencrypt
- name: Install certbot dependencies (Ubuntu 18.04) - name: Install certbot dependencies (Ubuntu 18.04)
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version is version_compare('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 apt: name={{ letsencrypt_deps_ubuntu_bionic }} state=present update_cache=yes
tags: tags:
- packages - packages
- letsencrypt - letsencrypt
- name: Install certbot dependencies (Debian 9) - name: Install certbot dependencies (Debian 9)
when: ansible_distribution == 'Debian' and ansible_distribution_major_version is version_compare('9', '==') when: ansible_distribution == 'Debian' and ansible_distribution_major_version is version_compare('9', '==')
apt: name={{ letsencrypt_debian_stretch_deps }} state=present update_cache=yes apt: name={{ letsencrypt_deps_debian_stretch }} state=present update_cache=yes
tags: tags:
- packages - packages
- letsencrypt - letsencrypt