toolkit/sync/common

31 lines
852 B
Plaintext
Raw Normal View History

# To be sourced by scripts to use
2021-07-08 02:54:12 +00:00
# Temporary probably. This makes it so if RLVER=... is called before the script
# it will set the version for the variables to call up. This was easier than
# creating duplicates of a bunch of stuff. Default version is 8.
if [ -z "$RLVER" ]; then
export RLVER=8
fi
STAGING_ROOT="/mnt/repos-staging"
PRODUCTION_ROOT="/mnt/repos-production"
# relative to ${ENV}_ROOT
CATEGORY_STUB="mirror/pub/rocky"
2021-07-08 02:54:12 +00:00
# should be overriden in other commons
#RELEASE_DIR="${CATEGORY_STUB}/${REVISION}${APPEND_TO_DIR}"
# Define arches we support
ARCHES=(x86_64 aarch64)
2021-07-08 02:54:12 +00:00
#Source Major common
test -f "$(dirname "$0")/common_${RLVER}" && source "$(dirname "$0")/common_${RLVER}"
if [ "$?" -ne 0 ]; then
echo "Could not source common_${RLVER}"
exit 1
fi
2021-07-08 02:54:12 +00:00
# Combined variables based on common data
REV="${REVISION}${APPEND_TO_DIR}"