From b4248ca8edaa40c0e983b81dfd1d31f0bf3159cc Mon Sep 17 00:00:00 2001 From: David Galloway Date: Fri, 26 Aug 2022 13:34:24 -0400 Subject: [PATCH] sync-pull: Update possible distro combos Removed EOL releases Signed-off-by: David Galloway --- scripts/sync-pull | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/sync-pull b/scripts/sync-pull index 6056b6c13..520defae0 100644 --- a/scripts/sync-pull +++ b/scripts/sync-pull @@ -14,7 +14,7 @@ echo "********************************************" # This ugly loop check all possible DEB combinations to see which repo has the most packages since that's likely the repo you want to sync. current_highest_count=0 -for combo in debian/jessie debian/stretch debian/buster debian/bullseye ubuntu/trusty ubuntu/xenial ubuntu/bionic; do +for combo in debian/bullseye ubuntu/bionic ubuntu/focal ubuntu/jammy; do combo_count=$(curl -s https://chacra.ceph.com/r/$project/$release/$sha1/${combo}/flavors/default/pool/main/c/ceph/ | wc -l) if [ $combo_count -gt $current_highest_count ]; then current_highest_count=$combo_count -- 2.47.3