toolkit/sync/sync-to-staging-sig.sh

32 lines
929 B
Bash
Raw Permalink Normal View History

2021-07-05 06:50:25 +00:00
#!/bin/bash
# Source common variables
2021-07-06 20:33:22 +00:00
# shellcheck disable=SC2046,1091,1090
source "$(dirname "$0")/common"
2022-08-01 02:27:46 +00:00
if [[ $# -eq 0 ]]; then
2021-07-08 02:54:12 +00:00
echo "Not enough information."
2022-08-01 02:27:46 +00:00
echo "You must use: sig"
2021-07-08 02:54:12 +00:00
exit 1
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-05 06:50:25 +00:00
# Short name (eg, NFV, extras, Rocky, gluster9)
2021-07-08 02:54:12 +00:00
SHORT=${1}
2021-07-05 06:50:25 +00:00
# Note, this should be lowercase. eg, storage.
2021-07-08 02:54:12 +00:00
SIG=${2}
2022-07-26 01:03:07 +00:00
cd "/mnt/compose/${MAJ}/latest-SIG-${SHORT}-${MAJ}/compose" || { echo "Failed to change directory"; ret_val=1; exit 1; }
2021-07-05 06:50:25 +00:00
ret_val=$?
2021-07-05 06:50:25 +00:00
if [ $ret_val -eq "0" ]; then
2022-07-26 01:03:07 +00:00
TARGET=${STAGING_ROOT}/${SIG_CATEGORY_STUB}/
2021-07-06 20:16:01 +00:00
mkdir -p "${TARGET}"
2021-07-06 20:33:22 +00:00
# disabling because none of our files should be starting with dashes. If they
# are something is *seriously* wrong here.
# shellcheck disable=SC2035
2022-12-19 23:11:50 +00:00
sudo -l && find **/* -maxdepth 0 -type d | parallel --will-cite -j 18 sudo rsync -av --chown=10004:10005 --progress --relative --human-readable --delete \
2021-07-06 20:16:01 +00:00
{} "${TARGET}"
2021-07-05 06:50:25 +00:00
fi