Skip to content

Commit 989faa9

Browse files
1 parent 80e1221 commit 989faa9

18 files changed

+32
-76
lines changed

ELK.sh

Lines changed: 0 additions & 44 deletions
This file was deleted.

adoptium.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,11 +119,11 @@ def delete_old_files(ver: int, alive_files: Set[str]):
119119
check=True)
120120
print("APT finished", flush=True)
121121
# =================== YUM repos ==========================
122-
# "$yum_sync" "${BASE_URL}/rpm/centos/@{os_ver}/@{arch}" 7-8 Adopitum x86_64,aarch64 "centos@{os_ver}-@{arch}" "$BASE_PATH/rpm"
122+
# "$yum_sync" "${BASE_URL}/rpm/centos/@{os_ver}/@{arch}" 7 Adopitum x86_64,aarch64 "centos@{os_ver}-@{arch}" "$BASE_PATH/rpm"
123123
sp.run([str(here/"yum-sync.py"),
124124
BASE_URL+'/rpm/centos/@{os_ver}/@{arch}',
125125
"--download-repodata",
126-
'7-8',
126+
'7',
127127
'Adoptium',
128128
'x86_64,aarch64',
129129
"centos@{os_ver}-@{arch}",

apt-sync.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
requests.utils.default_user_agent = lambda: APT_SYNC_USER_AGENT
2424

2525
OS_TEMPLATE = {
26-
'ubuntu-lts': ["xenial", "bionic", "focal"],
27-
'debian-current': ["jessie", "stretch", "buster", "bullseye"],
26+
'ubuntu-lts': ["bionic", "focal", "jammy"],
27+
'debian-current': ["buster", "bullseye", "bookworm"],
2828
'debian-latest2': ["buster", "bullseye"],
2929
'debian-latest': ["bullseye"],
3030
}

chef.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ YUM_PATH="${BASE_PATH}/yum/stable"
1313
APT_PATH="${BASE_PATH}/apt/stable"
1414
export REPO_SIZE_FILE=/tmp/reposize.$RANDOM
1515

16-
"$yum_sync" "${UPSTREAM}/yum/stable/el/@{os_ver}/@{arch}" 6-8 chef x86_64 "stable-el@{os_ver}-@{arch}" "$YUM_PATH"
16+
"$yum_sync" "${UPSTREAM}/yum/stable/el/@{os_ver}/@{arch}" 7 chef x86_64 "stable-el@{os_ver}-@{arch}" "$YUM_PATH"
1717
echo "YUM finished"
1818

19-
"$apt_sync" --delete-dry-run "${UPSTREAM}/apt/stable" @ubuntu-lts,@debian-current main amd64,i386,aarch64 "$APT_PATH"
19+
"$apt_sync" --delete "${UPSTREAM}/apt/stable" @ubuntu-lts,@debian-current main amd64,i386,aarch64 "$APT_PATH"
2020
echo "APT finished"
2121

2222
"${_here}/helpers/size-sum.sh" $REPO_SIZE_FILE --rm

elastic.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ BASE_URL=${TUNASYNC_UPSTREAM_URL:-"https://artifacts.elastic.co"}
1111
BASE_PATH="${TUNASYNC_WORKING_DIR%/}"
1212
BASE_URL="${BASE_URL%/}"
1313

14-
ELASTIC_VERSION=("5.x" "6.x" "7.x" "8.x")
14+
ELASTIC_VERSION=("6.x" "7.x" "8.x")
1515

1616
YUM_PATH="${BASE_PATH}/yum"
1717
APT_PATH="${BASE_PATH}/apt"
@@ -20,7 +20,7 @@ export REPO_SIZE_FILE=/tmp/reposize.$RANDOM
2020
# =================== APT repos ===============================
2121

2222
for elsver in "${ELASTIC_VERSION[@]}"; do
23-
"$apt_sync" --delete-dry-run "${BASE_URL}/packages/${elsver}/apt" stable main amd64,i386 "${APT_PATH}/${elsver}"
23+
"$apt_sync" --delete "${BASE_URL}/packages/${elsver}/apt" stable main amd64,i386 "${APT_PATH}/${elsver}"
2424

2525
(cd ${BASE_PATH}/${elsver}; ln -sfn ../apt/${elsver} apt)
2626
done

erlang.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ echo "Ubuntu finished"
2121
echo "Debian finished"
2222

2323
# =================== YUM repos ===============================
24-
"$yum_sync" "${BASE_URL}/rpm/centos/@{os_ver}/@{arch}" 6-8 erlang x86_64 "@{os_ver}" "$YUM_PATH"
24+
"$yum_sync" "${BASE_URL}/rpm/centos/@{os_ver}/@{arch}" 7 erlang x86_64 "@{os_ver}" "$YUM_PATH"
2525
echo "YUM finished"
2626

2727
"${_here}/helpers/size-sum.sh" $REPO_SIZE_FILE --rm

gitlab-ce.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ UBUNTU_PATH="${BASE_PATH}/ubuntu/"
1515
DEBIAN_PATH="${BASE_PATH}/debian/"
1616
export REPO_SIZE_FILE=/tmp/reposize.$RANDOM
1717

18-
"$yum_sync" "${UPSTREAM}/el/@{os_ver}/@{arch}/" 6-8 "gitlab" x86_64 "el@{os_ver}" "$YUM_PATH"
18+
"$yum_sync" "${UPSTREAM}/el/@{os_ver}/@{arch}/" 7 "gitlab" x86_64 "el@{os_ver}" "$YUM_PATH"
1919
echo "YUM finished"
2020

21-
"$apt_sync" --delete-dry-run "${UPSTREAM}/ubuntu" @ubuntu-lts main amd64,i386 "$UBUNTU_PATH"
21+
"$apt_sync" --delete "${UPSTREAM}/ubuntu" @ubuntu-lts main amd64,i386 "$UBUNTU_PATH"
2222
echo "Ubuntu finished"
23-
"$apt_sync" --delete-dry-run "${UPSTREAM}/debian" @debian-current main amd64,i386 "$DEBIAN_PATH"
23+
"$apt_sync" --delete "${UPSTREAM}/debian" @debian-current main amd64,i386 "$DEBIAN_PATH"
2424
echo "Debian finished"
2525

2626
"${_here}/helpers/size-sum.sh" $REPO_SIZE_FILE --rm

gitlab-ci-multi-runner.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ YUM_PATH="${BASE_PATH}/yum"
1414
UBUNTU_PATH="${BASE_PATH}/ubuntu/"
1515
DEBIAN_PATH="${BASE_PATH}/debian/"
1616

17-
"$yum_sync" "${UPSTREAM}/el/@{os_ver}/@{arch}" 6-7 gitlab-ci-multi-runner x86_64 "el@{os_ver}" "$YUM_PATH"
17+
"$yum_sync" "${UPSTREAM}/el/@{os_ver}/@{arch}" 7 gitlab-ci-multi-runner x86_64 "el@{os_ver}" "$YUM_PATH"
1818
echo "YUM finished"
1919

20-
"$apt_sync" --delete-dry-run "${UPSTREAM}/ubuntu" @ubuntu-lts main amd64,i386 "$UBUNTU_PATH"
20+
"$apt_sync" --delete "${UPSTREAM}/ubuntu" @ubuntu-lts main amd64,i386 "$UBUNTU_PATH"
2121
echo "Ubuntu finished"
22-
"$apt_sync" --delete-dry-run "${UPSTREAM}/debian" @debian-current main amd64,i386 "$DEBIAN_PATH"
22+
"$apt_sync" --delete "${UPSTREAM}/debian" @debian-current main amd64,i386 "$DEBIAN_PATH"
2323
echo "Debian finished"
2424

2525

gitlab-runner.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ UBUNTU_PATH="${BASE_PATH}/ubuntu/"
1515
DEBIAN_PATH="${BASE_PATH}/debian/"
1616
export REPO_SIZE_FILE=/tmp/reposize.$RANDOM
1717

18-
"$yum_sync" "${UPSTREAM}/el/@{os_ver}/@{arch}" 6-8 gitlab-runner x86_64,aarch64 "el@{os_ver}-@{arch}" "$YUM_PATH"
18+
"$yum_sync" "${UPSTREAM}/el/@{os_ver}/@{arch}" 7 gitlab-runner x86_64,aarch64 "el@{os_ver}-@{arch}" "$YUM_PATH"
1919
echo "YUM finished"
2020

2121
"$apt_sync" --delete "${UPSTREAM}/ubuntu" @ubuntu-lts main amd64,i386,arm64 "$UBUNTU_PATH"

influxdata.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ echo "Debian finished"
2626

2727

2828
# =================== YUM/DNF repos ==========================
29-
"$yum_sync" "${BASE_URL}/rhel/@{os_ver}/@{arch}/stable/" 6-8 influxdata x86_64 "el@{os_ver}-@{arch}" "$YUM_PATH"
29+
"$yum_sync" "${BASE_URL}/rhel/@{os_ver}/@{arch}/stable/" 7 influxdata x86_64 "el@{os_ver}-@{arch}" "$YUM_PATH"
3030
echo "YUM finished"
3131

3232
"${_here}/helpers/size-sum.sh" $REPO_SIZE_FILE --rm

0 commit comments

Comments
 (0)