mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-04-19 11:42:43 +00:00
24 lines
680 B
Bash
Executable File
24 lines
680 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.grafana.com/oss"}
|
|
|
|
YUM_PATH="${BASE_PATH}/yum"
|
|
APT_PATH="${BASE_PATH}/apt"
|
|
|
|
# =================== APT repos ===============================
|
|
"$apt_sync" --delete-dry-run "${BASE_URL}/deb" stable,beta main amd64,armhf,arm64 "$APT_PATH"
|
|
echo "APT finished"
|
|
|
|
|
|
# =================== YUM/DNF repos ==========================
|
|
"$yum_sync" "${BASE_URL}/@{comp}" 7 rpm,rpm-beta x86_64 "@{comp}" "$YUM_PATH"
|
|
echo "YUM finished"
|