blob: c48ed4b5ad6d04bd4c0914661b74f2f48f4b2029 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
---
- name: install gpgv
apt:
name: gpgv
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"
|