2022-11-10 18:56:09 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-01-13 22:32:50 +00:00
|
|
|
# Short name (eg, NFV, extras, Rocky, gluster9)
|
|
|
|
SHORT=${1}
|
|
|
|
|
2022-11-10 18:56:09 +00:00
|
|
|
# Source common variables
|
|
|
|
# shellcheck disable=SC2046,1091,1090
|
|
|
|
source "$(dirname "$0")/common"
|
|
|
|
|
|
|
|
if [[ $# -eq 0 ]]; then
|
|
|
|
echo "You must specify a short name."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2023-05-22 09:12:07 +00:00
|
|
|
if [[ "${RLVER}" -eq "8" ]]; then
|
|
|
|
echo "This is only used for Rocky Linux 9+ releases."
|
2023-09-03 22:06:20 +00:00
|
|
|
exit 1
|
2023-05-22 09:12:07 +00:00
|
|
|
fi
|
|
|
|
|
2022-11-10 18:56:09 +00:00
|
|
|
# Major Version (eg, 8)
|
|
|
|
MAJ=${RLVER}
|
|
|
|
|
2023-05-13 20:44:17 +00:00
|
|
|
#cd "${RELEASE_COMPOSE_ROOT}/compose" || { echo "Failed to change directory"; ret_val=1; exit 1; }
|
|
|
|
cd "${RELEASE_COMPOSE_ROOT}/" || { echo "Failed to change directory"; ret_val=1; exit 1; }
|
2022-11-10 18:56:09 +00:00
|
|
|
ret_val=$?
|
|
|
|
|
|
|
|
if [ $ret_val -eq "0" ]; then
|
|
|
|
TARGET="${STAGING_ROOT}/${CATEGORY_STUB}/${REV}"
|
|
|
|
mkdir -p "${TARGET}"
|
2023-05-13 20:59:58 +00:00
|
|
|
echo "Hardlinking compose directory before syncing"
|
|
|
|
perform_hardlink "compose"
|
2023-05-13 20:44:17 +00:00
|
|
|
rsync_delete_staging "${TARGET}"
|
2022-11-10 18:56:09 +00:00
|
|
|
fi
|