mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-04-19 11:42:43 +00:00
29 lines
876 B
Bash
Executable File
29 lines
876 B
Bash
Executable File
#!/bin/bash
|
|
# reqires: wget, yum-utils
|
|
set -e
|
|
set -o pipefail
|
|
|
|
_here=`dirname $(realpath $0)`
|
|
apt_sync="${_here}/apt-sync.py"
|
|
yum_sync="${_here}/yum-sync.py"
|
|
|
|
BASE_PATH="${TUNASYNC_WORKING_DIR}"
|
|
UPSTREAM=${TUNASYNC_UPSTREAM_URL:-"https://packages.gitlab.com/runner/gitlab-runner"}
|
|
|
|
YUM_PATH="${BASE_PATH}/yum"
|
|
UBUNTU_PATH="${BASE_PATH}/ubuntu/"
|
|
DEBIAN_PATH="${BASE_PATH}/debian/"
|
|
export REPO_SIZE_FILE=/tmp/reposize.$RANDOM
|
|
|
|
"$yum_sync" "${UPSTREAM}/el/@{os_ver}/@{arch}" 6-8 gitlab-runner x86_64,aarch64 "el@{os_ver}-@{arch}" "$YUM_PATH"
|
|
echo "YUM finished"
|
|
|
|
"$apt_sync" --delete "${UPSTREAM}/ubuntu" @ubuntu-lts main amd64,i386,arm64 "$UBUNTU_PATH"
|
|
echo "Ubuntu finished"
|
|
"$apt_sync" --delete "${UPSTREAM}/debian" @debian-current main amd64,i386,arm64,armhf "$DEBIAN_PATH"
|
|
echo "Debian finished"
|
|
|
|
"${_here}/helpers/size-sum.sh" $REPO_SIZE_FILE --rm
|
|
|
|
# vim: ts=4 sts=4 sw=4
|