Skip to content

Commit 0462aa7

Browse files
committed
add new CVMFS signing key
1 parent 870fca1 commit 0462aa7

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

tasks/keys.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,17 @@
99
# - the CVMFS configuration repository contains the public CVMFS keys for all other Compute Canada CVMFS repositories
1010
# - the other CVMFS repositories contain all Compute Canada software (and other content)
1111

12-
- name: Install CernVM GPG key
13-
rpm_key:
14-
key: https://cvmrepo.web.cern.ch/cvmrepo/yum/RPM-GPG-KEY-CernVM
12+
- name: Install CernVM GPG keys
13+
ansible.builtin.rpm_key:
14+
key: "{{ item.key }}"
1515
state: present
1616
validate_certs: yes
17-
fingerprint: "70B9 8904 8820 8E31 5ED4 5208 230D 389D 8AE4 5CE7"
17+
fingerprint: "{{ item.fingerprint }}"
18+
loop:
19+
# 2024
20+
- { key: "https://cvmrepo.web.cern.ch/cvmrepo/yum/RPM-GPG-KEY-CernVM-2048", fingerprint: "FD80 468D 49B3 B24C 3417 41FC 8CE0 A76C 497E A957" }
21+
# older key, to be eventually removed
22+
- { key: "https://cvmrepo.web.cern.ch/cvmrepo/yum/RPM-GPG-KEY-CernVM", fingerprint: "70B9 8904 8820 8E31 5ED4 5208 230D 389D 8AE4 5CE7" }
1823

1924
# Also available at https://git.computecanada.ca/cc-cvmfs-public/cvmfs-config/raw/master/RPM-GPG-KEY-CC-CVMFS-1
2025
- name: Install Compute Canada CVMFS GPG key

0 commit comments

Comments
 (0)