toolkit/mangle/generators/common

25 lines
734 B
Plaintext
Raw Normal View History

2022-09-26 02:31:40 +00:00
# To be sourced by scripts to use
if [ -z "$RLVER" ]; then
echo "You must set RLVER."
exit 1
fi
PREPOPDROP="/tmp/prepopulate.json"
2022-09-26 19:36:49 +00:00
VERSDROP="/tmp/versions.list"
2022-09-26 02:31:40 +00:00
# Source Major common
# Override: Not Allowed
test -f "$(dirname "${BASH_SOURCE[0]}")/common_${RLVER}" && source "$(dirname "${BASH_SOURCE[0]}")/common_${RLVER}"
if [ "$?" -ne 0 ]; then
echo "Could not source common_${RLVER}"
exit 1
fi
2024-02-21 19:07:16 +00:00
GIT_URL="https://git.rockylinux.org"
2022-09-26 02:31:40 +00:00
STREAM_COMPOSE_BASEURL="https://composes.stream.centos.org/production"
2023-02-28 09:46:58 +00:00
STREAM_KOJI_REPO="https://kojihub.stream.centos.org/kojifiles/repos"
2023-07-12 21:35:59 +00:00
ELN_KOJI_REPO="https://kojipkgs.fedoraproject.org/repos"
2023-02-28 09:46:58 +00:00
PERIDOT_REPO="https://yumrepofs.build.resf.org/v1/projects"
2022-09-26 02:31:40 +00:00
COMPOSE_BASEDIR="/mnt/compose"