toolkit/mangle/generators/common
Louis Abel 9d9357647e
Some checks failed
Build empanada images for imagefactory / buildx (push) Failing after 3s
Build empanada container images for lorax / buildx (push) Successful in 1s
change lh to s
2024-02-21 12:07:16 -07:00

25 lines
734 B
Plaintext

# To be sourced by scripts to use
if [ -z "$RLVER" ]; then
echo "You must set RLVER."
exit 1
fi
PREPOPDROP="/tmp/prepopulate.json"
VERSDROP="/tmp/versions.list"
# 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
GIT_URL="https://git.rockylinux.org"
STREAM_COMPOSE_BASEURL="https://composes.stream.centos.org/production"
STREAM_KOJI_REPO="https://kojihub.stream.centos.org/kojifiles/repos"
ELN_KOJI_REPO="https://kojipkgs.fedoraproject.org/repos"
PERIDOT_REPO="https://yumrepofs.build.resf.org/v1/projects"
COMPOSE_BASEDIR="/mnt/compose"