You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
344 B
YAML

---
- name: Install GnuPG (to manage the APT keystore)
become: yes
apt:
name: gnupg2
state: present
- name: Install common CA certificates
become: yes
apt:
name: ca-certificates
state: present
- name: Ensure that APT can use HTTPS repositories
become: yes
apt:
name: apt-transport-https
state: present
...