18 lines
425 B
Plaintext
18 lines
425 B
Plaintext
# To be sourced by scripts to use
|
|
|
|
REPO=("BaseOS" "AppStream" "CRB" "HighAvailability" "ResilientStorage" "NFV" "RT" "SAP" "SAPHANA")
|
|
ARCH=("aarch64" "ppc64le" "s390x" "x86_64")
|
|
|
|
VER="r${MAJOR}${LH}"
|
|
|
|
case "$VER" in
|
|
r10)
|
|
export PERIDOT_PROJECT_ID=474db218-5282-4ec7-8db2-4fb80a59c850 ;;
|
|
r10lh)
|
|
export PERIDOT_PROJECT_ID=474db218-5282-4ec7-8db2-4fb80a59c850 ;;
|
|
*)
|
|
echo "Not supported"
|
|
exit 1
|
|
;;
|
|
esac
|