From 015a1bfec7d4144e86468d6361db56d28fdd840b Mon Sep 17 00:00:00 2001 From: David Prevot Date: Mon, 13 Mar 2023 11:57:44 +0100 Subject: [PATCH] Revert "Use HTTPS for our new repository" It errors out if ca-certificates is not yet installed This reverts commit 12a0d8d57ecdf72e87e4b73e7bca6ef025500719. --- apt/templates/evolix_public.list.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apt/templates/evolix_public.list.j2 b/apt/templates/evolix_public.list.j2 index c0ea0eee..278b9378 100644 --- a/apt/templates/evolix_public.list.j2 +++ b/apt/templates/evolix_public.list.j2 @@ -1,7 +1,7 @@ # {{ ansible_managed }} {% if ansible_distribution_release == "bookworm" %} -deb [signed-by={{ apt_keyring_dir }}/pub_evolix.asc] https://pub.evolix.org/evolix bullseye main +deb [signed-by={{ apt_keyring_dir }}/pub_evolix.asc] http://pub.evolix.org/evolix bullseye main {% else %} -deb [signed-by={{ apt_keyring_dir }}/pub_evolix.asc] https://pub.evolix.org/evolix {{ ansible_distribution_release }} main +deb [signed-by={{ apt_keyring_dir }}/pub_evolix.asc] http://pub.evolix.org/evolix {{ ansible_distribution_release }} main {% endif %}