2021-07-05 06:50:25 +00:00
|
|
|
#!/bin/bash
|
2021-07-06 17:08:30 +00:00
|
|
|
|
|
|
|
# Source common variables
|
2021-07-06 19:24:29 +00:00
|
|
|
source "./common"
|
2021-07-06 17:08:30 +00:00
|
|
|
|
2021-07-05 06:50:25 +00:00
|
|
|
# Major Version (eg, 8)
|
2021-07-06 17:08:30 +00:00
|
|
|
MAJ=${1}
|
2021-07-05 06:50:25 +00:00
|
|
|
# Short name (eg, NFV, extras, Rocky, gluster9)
|
|
|
|
SHORT=${2}
|
|
|
|
# The directory where we're going to, usually MAJOR.MINOR, sometimes it's MAJOR.MINOR-RCX
|
2021-07-06 17:08:30 +00:00
|
|
|
REV=${3}
|
|
|
|
|
|
|
|
cd /mnt/compose/${MAJ}/latest-${SHORT}-${MAJ}
|
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 17:08:30 +00:00
|
|
|
local TARGET=${STAGING_ROOT}/${CATEGORY_STUB}/${REV}
|
|
|
|
mkdir -p ${TARGET}
|
|
|
|
sudo -l && find **/* -maxdepth 0 -type d | parallel --will-cite -j 18 sudo rsync -av --chown=10004:10005 --progress --relative --human-readable \
|
|
|
|
{} ${TARGET}
|
2021-07-05 06:50:25 +00:00
|
|
|
else
|
|
|
|
echo "Failed to change directory"
|
|
|
|
fi
|