roles/nginx: Rename Let's Encrypt dependency lists
This commit is contained in:
@ -19,21 +19,21 @@
|
||||
|
||||
- name: Install certbot dependencies (Ubuntu 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:
|
||||
- packages
|
||||
- letsencrypt
|
||||
|
||||
- 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
|
||||
apt: name={{ letsencrypt_deps_ubuntu_bionic }} state=present update_cache=yes
|
||||
tags:
|
||||
- packages
|
||||
- letsencrypt
|
||||
|
||||
- name: Install certbot dependencies (Debian 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:
|
||||
- packages
|
||||
- letsencrypt
|
||||
|
Reference in New Issue
Block a user