Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ansible/examples/builder.yml: add Debian bookworm signing keys #2171

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion ansible/examples/builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
- container_mirror: 'docker-mirror.front.sepia.ceph.com:5000'
- secrets_path: "{{ lookup('env', 'ANSIBLE_SECRETS_PATH') | default('/etc/ansible/secrets', true) }}"


tasks:
- name: "Include secrets"
include_vars: "{{ secrets_path | mandatory }}/jenkins_api_token.yml"
Expand Down Expand Up @@ -646,6 +645,27 @@
keyring: /etc/apt/trusted.gpg
state: present

- name: Add the Debian Bullseye Key
apt_key:
id: 8DD47936
url: https://ftp-master.debian.org/keys/archive-key-11.asc
keyring: /etc/apt/trusted.gpg
state: present

- name: Add the Debian Security Bullseye Key
apt_key:
id: 4AAD5C5D
url: https://ftp-master.debian.org/keys/archive-key-11-security.asc
keyring: /etc/apt/trusted.gpg
state: present

- name: Add the Debian Bullseye Stable Key
apt_key:
id: 0D6C9793
url: https://ftp-master.debian.org/keys/release-11.asc
keyring: /etc/apt/trusted.gpg
state: present

- name: Add the Debian Bookworm Key
apt_key:
id: 350947F8
Expand Down