mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-04-19 11:42:43 +00:00
28 lines
901 B
Bash
Executable File
28 lines
901 B
Bash
Executable File
#!/bin/bash
|
|
# requires: createrepo reposync wget curl
|
|
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}"
|
|
BASE_URL=${TUNASYNC_UPSTREAM_URL:-"https://packages.cloud.google.com"}
|
|
|
|
YUM_PATH="${BASE_PATH}/yum/repos"
|
|
APT_PATH="${BASE_PATH}/apt"
|
|
export REPO_SIZE_FILE=/tmp/reposize.$RANDOM
|
|
|
|
# =================== APT repos ===============================
|
|
# NOTE: kubernetes-xenial is not only for xenial
|
|
"$apt_sync" --delete "${BASE_URL}/apt" "kubernetes-xenial" main amd64,i386,armhf,arm64 "$APT_PATH"
|
|
echo "APT finished"
|
|
|
|
# =================== YUM/DNF repos ==========================
|
|
|
|
"$yum_sync" "${BASE_URL}/yum/repos/@{comp}-el@{os_ver}-@{arch}/" 7 kubernetes x86_64,armhfp,aarch64 "@{comp}-el@{os_ver}-@{arch}" "$YUM_PATH"
|
|
echo "YUM finished"
|
|
|
|
"${_here}/helpers/size-sum.sh" $REPO_SIZE_FILE --rm
|