From c0852557af5c66178135ea6b89524907053fdb01 Mon Sep 17 00:00:00 2001 From: Markus Hauschild Date: Wed, 6 Sep 2023 21:41:06 +0200 Subject: [PATCH] matrix: make compatiable with Debian 12 --- roles/matrix/tasks/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/matrix/tasks/main.yml b/roles/matrix/tasks/main.yml index 7774053..de997a1 100644 --- a/roles/matrix/tasks/main.yml +++ b/roles/matrix/tasks/main.yml @@ -1,7 +1,8 @@ --- - name: Enable matrix apt-key - apt_key: url="https://packages.matrix.org/debian/matrix-org-archive-keyring.gpg" + apt_key: url="https://packages.matrix.org/debian/matrix-org-archive-keyring.gpg" keyring="/etc/apt/trusted.gpg.d/matrix.gpg" + - name: Enable matrix repository apt_repository: repo="deb https://packages.matrix.org/debian/ {{ ansible_distribution_release }} main"