forked from sig_core/toolkit
Louis Abel
977ad26b83
8 and 9 syncs are different. 8 still uses pungi and we direct non-stable composes to /mnt/compose/8-.../ instead of changing the profile to accomodate. All 9 release will sit in /mnt/compose/9 and same with future major versions. All SIG's sync to /mnt/compose/MAJOR. There are no plans for SIG's to sync to non-stable.
39 lines
1.1 KiB
Bash
39 lines
1.1 KiB
Bash
#!/bin/bash
|
|
|
|
# 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
|
|
|
|
# Major Version (eg, 8)
|
|
MAJ=${RLVER}
|
|
# Short name (eg, NFV, extras, Rocky, gluster9)
|
|
SHORT=${1}
|
|
|
|
cd "${RELEASE_COMPOSE_ROOT}/latest-${SHORT}-${MAJ}/compose" || { echo "Failed to change directory"; ret_val=1; exit 1; }
|
|
ret_val=$?
|
|
|
|
if [ $ret_val -eq "0" ]; then
|
|
TARGET="${STAGING_ROOT}/${CATEGORY_STUB}/${REV}"
|
|
mkdir -p "${TARGET}"
|
|
# disabling because none of our files should be starting with dashes. If they
|
|
# are something is *seriously* wrong here.
|
|
# shellcheck disable=SC2035
|
|
sudo -l && find **/* -maxdepth 0 -type d | parallel --will-cite -j 18 sudo rsync -av --chown=10004:10005 --progress --relative --human-readable --delete \
|
|
{} "${TARGET}"
|
|
|
|
# This is temporary until we implement rsync into empanadas
|
|
if [ -f "COMPOSE_ID" ]; then
|
|
cp COMPOSE_ID "${TARGET}"
|
|
chown 10004:10005 "${TARGET}/COMPOSE_ID"
|
|
fi
|
|
|
|
if [ -d "metadata" ]; then
|
|
rsync -av --chown=10004:10005 --progress --relative --human-readable metadata "${TARGET}"
|
|
fi
|
|
fi
|