mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-12-25 16:32:47 +00:00
Remove focal from ubuntu releases [ci skip]
Signed-off-by: Shengqi Chen <harry-chen@outlook.com>
This commit is contained in:
parent
6e0a7701f7
commit
daee7589c6
|
|
@ -44,7 +44,7 @@ if USE_ADDR_FAMILY != "":
|
|||
)
|
||||
|
||||
OS_TEMPLATE = {
|
||||
"ubuntu-lts": ["focal", "jammy", "noble"],
|
||||
"ubuntu-lts": ["jammy", "noble"],
|
||||
"debian-current": ["bullseye", "bookworm", "trixie"],
|
||||
"debian-latest2": ["bookworm", "trixie"],
|
||||
"debian-latest": ["trixie"],
|
||||
|
|
|
|||
2
cvmfs.sh
2
cvmfs.sh
|
|
@ -15,7 +15,7 @@ YUM_PATH="${BASE_PATH}/yum"
|
|||
export REPO_SIZE_FILE=/tmp/reposize.$RANDOM
|
||||
|
||||
# CERN keeps only maintained versions of CVMFS
|
||||
ubuntu_os=(noble jammy focal)
|
||||
ubuntu_os=(noble jammy)
|
||||
debian_os=(trixie bookworm bullseye)
|
||||
deb_suffixes=(prod)
|
||||
declare -a debian_dists=()
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ function get_codenames() {
|
|||
echo $codenames
|
||||
}
|
||||
|
||||
for os in "focal" "jammy" "noble" "bullseye" "bookworm" "trixie"; do
|
||||
for os in "jammy" "noble" "bullseye" "bookworm" "trixie"; do
|
||||
codenames=$(get_codenames $os)
|
||||
"$apt_sync" --delete "$BASE_URL/$os" "$codenames" main amd64,arm64 "$BASE_PATH/$os"
|
||||
done
|
||||
|
|
|
|||
Loading…
Reference in New Issue