19 lines
432 B
Plaintext
19 lines
432 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")
|
|
|
|
MAJOR="9"
|
|
VER="r${MAJOR}${LH}"
|
|
|
|
case "$VER" in
|
|
r9)
|
|
export PERIDOT_PROJECT_ID=df5bcbfc-ba83-4da8-84d6-ae0168921b4d ;;
|
|
r9s)
|
|
export PERIDOT_PROJECT_ID=df5bcbfc-ba83-4da8-84d6-ae0168921b4d ;;
|
|
*)
|
|
echo "Not supported"
|
|
exit 1
|
|
;;
|
|
esac
|