From 1fae737ac4ff0291c002395cfca4f2d9f7e85ba8 Mon Sep 17 00:00:00 2001 From: Jeremy Lecour Date: Sun, 6 Nov 2022 15:21:00 +0100 Subject: [PATCH] Use bullseye suite even for bookworm --- apt/templates/evolix_public.list.j2 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apt/templates/evolix_public.list.j2 b/apt/templates/evolix_public.list.j2 index be7b45e8..e0bc0de7 100644 --- a/apt/templates/evolix_public.list.j2 +++ b/apt/templates/evolix_public.list.j2 @@ -1,3 +1,7 @@ # {{ ansible_managed }} +{% if ansible_distribution_release == "bookworm" %} +deb [signed-by={{ apt_keyring_dir }}/reg.asc] http://pub.evolix.net/ bullseye/ +{% else %} deb [signed-by={{ apt_keyring_dir }}/reg.asc] http://pub.evolix.net/ {{ ansible_distribution_release }}/ +{% endif %} \ No newline at end of file