From 969a5bce7d34624dd529bbe526d02d12e38e6ff9 Mon Sep 17 00:00:00 2001 From: Jeremy Lecour Date: Mon, 16 Aug 2021 13:50:53 +0200 Subject: [PATCH] apt: remove workaround for Evolix public repositories with Debian 11 --- CHANGELOG.md | 1 + apt/templates/evolix_public.list.j2 | 5 ----- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e07c764..6ec39284 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ The **patch** part changes incrementally at each release. * Use python3 modules for Debian 11 and later * Remove embedded GPG keys only if legacy keyring is present +* apt: remove workaround for Evolix public repositories with Debian 11 * certbot: silence letsencrypt deprecation warnings * elasticsearch: 7.x by default * evoadmin-web: simpler PHP packages lists diff --git a/apt/templates/evolix_public.list.j2 b/apt/templates/evolix_public.list.j2 index 25156cd0..06de99c0 100644 --- a/apt/templates/evolix_public.list.j2 +++ b/apt/templates/evolix_public.list.j2 @@ -1,8 +1,3 @@ # {{ ansible_managed }} -{% if ansible_distribution_release == 'bullseye' %} -# Force previous Debian version (temporary) -deb http://pub.evolix.net/ buster/ -{% else %} deb http://pub.evolix.net/ {{ ansible_distribution_release }}/ -{% endif %}