Merge pull request #269 from riker09/patch-1

Fixed typo in log message
This commit is contained in:
Jeff Geerling 2021-03-26 08:37:37 -05:00 committed by GitHub
commit ab3d6c7ec5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,13 +13,13 @@
- ca-certificates
state: present
- name: Ensure additionnal dependencies are installed (on Ubuntu < 20.04 and any other systems).
- name: Ensure additional dependencies are installed (on Ubuntu < 20.04 and any other systems).
apt:
name: gnupg2
state: present
when: ansible_distribution != 'Ubuntu' or ansible_distribution_version is version('20.04', '<')
- name: Ensure additionnal dependencies are installed (on Ubuntu >= 20.04).
- name: Ensure additional dependencies are installed (on Ubuntu >= 20.04).
apt:
name: gnupg
state: present