Skip to content

Commit

Permalink
Merge pull request #11413 from jan-cerny/issue11399
Browse files Browse the repository at this point in the history
Fix Ansible in rule ensure_redhat_gpgkey_installed
  • Loading branch information
vojtapolasek committed Jan 5, 2024
2 parents 2055e99 + f0e38a3 commit 9826daa
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@

- name: Set Fact - Valid fingerprints
set_fact:
gpg_valid_fingerprints: ("{{{ release_key_fingerprint }}}" "{{{ auxiliary_key_fingerprint }}}")
gpg_valid_fingerprints:
- "{{{ release_key_fingerprint }}}"
- "{{{ auxiliary_key_fingerprint }}}"

- name: Import RedHat GPG key
rpm_key:
Expand Down

0 comments on commit 9826daa

Please sign in to comment.