mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-04-19 11:42:43 +00:00
28 lines
886 B
Bash
Executable File
28 lines
886 B
Bash
Executable File
#!/bin/bash
|
|
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="https://packages.erlang-solutions.com"
|
|
|
|
YUM_PATH="${BASE_PATH}/centos"
|
|
UBUNTU_PATH="${BASE_PATH}/ubuntu"
|
|
DEBIAN_PATH="${BASE_PATH}/debian"
|
|
export REPO_SIZE_FILE=/tmp/reposize.$RANDOM
|
|
|
|
# =================== APT repos ===============================
|
|
"$apt_sync" --delete "${BASE_URL}/ubuntu" @ubuntu-lts contrib amd64,i386 "$UBUNTU_PATH"
|
|
echo "Ubuntu finished"
|
|
"$apt_sync" --delete "${BASE_URL}/debian" @debian-current contrib amd64,i386 "$DEBIAN_PATH"
|
|
echo "Debian finished"
|
|
|
|
# =================== YUM repos ===============================
|
|
"$yum_sync" "${BASE_URL}/rpm/centos/@{os_ver}/@{arch}" 7 erlang x86_64 "@{os_ver}" "$YUM_PATH"
|
|
echo "YUM finished"
|
|
|
|
"${_here}/helpers/size-sum.sh" $REPO_SIZE_FILE --rm
|