Add apt_common role for third party repositories

This commit is contained in:
jeltz 2021-03-03 21:44:37 +01:00
parent 84b3407b34
commit bd5b2e1fbe

View file

@ -0,0 +1,19 @@
---
- name: Install GnuPG (to manage the APT keystore)
become: true
apt:
name: gnupg2
state: latest
- name: Install common CA certificates
become: true
apt:
name: ca-certificates
state: latest
- name: Ensure that APT can use HTTPS repositories
become: true
apt:
name: apt-transport-https
state: latest
...