blob: 662b8acbaecb947b3646d5c1cf01a3aac0956c73 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
---
- name: install gpgv
apt:
name: gpgv
state: present
- name: prepare directory keyrings
file:
name: "{{ installer_base_path }}/keyrings"
state: directory
- name: copy debian keyring files
loop: "{{ lookup('fileglob', global_files_dir+'/common/keyrings/debian-*.gpg', wantlist=True) }}"
loop_control:
label: "{{ item | basename }}"
copy:
src: "{{ item }}"
dest: "{{ installer_base_path }}/keyrings/{{ item | basename }}"
- name: copy ubuntu keyring file
copy:
src: "{{ global_files_dir }}/common/keyrings/ubuntu-archive.gpg"
dest: "{{ installer_base_path }}/keyrings/ubuntu-archive.gpg"
|