Created
June 13, 2021 10:00
-
-
Save zeitounator/fe7bca472f1cb649d91b6bc3794626a9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- hosts: localhost | |
connection: local | |
name: IMPORTING SECURITY KEYS | |
vars: | |
my_key_list: | |
- https://rpmfusion.org/keys?action=AttachFile&do=get&target=RPM-GPG-KEY-rpmfusion-free-fedora-2020 | |
- https://rpmfusion.org/keys?action=AttachFile&do=get&target=RPM-GPG-KEY-rpmfusion-nonfree-fedora-2020 | |
tasks: | |
- name: Importing all relevent keys | |
ansible.builtin.rpm_key: | |
state: present | |
key: "{{ item }}" | |
loop: "{{ my_key_list }}" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks a lot! It worked flawlessly 😀