blob: d6a4cc7a06165dffa3994b4f1faa30a0ca324150 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
---
- name: install gpgv
apt:
name:
- gpgv
- xorriso
state: present
- name: prepare directory keyrings
file:
name: "{{ installer_base_path }}/keyrings"
state: directory
- name: copy ubuntu cdimage keyring file
copy:
src: "{{ global_files_dir }}/common/keyrings/ubuntu-cdimage.gpg"
dest: "{{ installer_base_path }}/keyrings/ubuntu-cdimage.gpg"
|