2021-07-05 06:50:25 +00:00
|
|
|
#!/bin/bash
|
2021-07-06 17:08:30 +00:00
|
|
|
|
2023-01-13 22:32:50 +00:00
|
|
|
# Short name (eg, NFV, extras, Rocky, gluster9)
|
|
|
|
SHORT=${1}
|
|
|
|
|
2021-07-06 17:08:30 +00:00
|
|
|
# Source common variables
|
2021-07-06 20:33:22 +00:00
|
|
|
# shellcheck disable=SC2046,1091,1090
|
2021-07-06 21:34:26 +00:00
|
|
|
source "$(dirname "$0")/common"
|
2021-07-06 17:08:30 +00:00
|
|
|
|
2021-07-08 02:54:12 +00:00
|
|
|
if [[ $# -eq 0 ]]; then
|
|
|
|
echo "You must specify a short name."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2023-05-17 21:51:12 +00:00
|
|
|
if [[ "${RLVER}" -ne "8" ]]; then
|
|
|
|
echo "This is only used for Rocky Linux 8 releases."
|
|
|
|
fi
|
|
|
|
|
2021-07-05 06:50:25 +00:00
|
|
|
# Major Version (eg, 8)
|
2021-07-08 02:54:12 +00:00
|
|
|
MAJ=${RLVER}
|
2021-07-06 17:08:30 +00:00
|
|
|
|
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; }
|
2021-07-05 06:50:25 +00:00
|
|
|
ret_val=$?
|
2021-07-06 17:08:30 +00:00
|
|
|
|
2021-07-05 06:50:25 +00:00
|
|
|
if [ $ret_val -eq "0" ]; then
|
2021-07-06 20:16:01 +00:00
|
|
|
TARGET="${STAGING_ROOT}/${CATEGORY_STUB}/${REV}"
|
2023-05-17 21:51:12 +00:00
|
|
|
# The target should already exist as this is used to do simple syncs.
|
2021-07-06 20:16:01 +00:00
|
|
|
mkdir -p "${TARGET}"
|
2023-05-17 21:51:12 +00:00
|
|
|
|
|
|
|
# Find all directories for this compose
|
|
|
|
repo_dirs=( $(find compose -name repodata -type d | sed 's/compose\///g') )
|
|
|
|
|
|
|
|
# Delete all repodata for this compose
|
|
|
|
for x in "${repo_dirs[@]}"; do
|
|
|
|
test -d "${TARGET}/${x}"
|
|
|
|
ret_val=$?
|
|
|
|
if [ $ret_val -eq "0" ]; then
|
|
|
|
/bin/rm "${TARGET:?}/${x}/"*
|
|
|
|
else
|
|
|
|
echo "${x} not found"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# We need to delete the old repodata
|
|
|
|
rsync_no_delete_staging_pungi "${TARGET}"
|
2023-05-13 21:46:12 +00:00
|
|
|
echo "Hardlinking staging directory (${TARGET})"
|
2023-05-13 20:59:58 +00:00
|
|
|
perform_hardlink "${TARGET}"
|
2021-07-05 06:50:25 +00:00
|
|
|
fi
|