2022-07-08 09:22:58 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Syncs everything from staging to production
|
|
|
|
|
|
|
|
# Source common variables
|
|
|
|
# shellcheck disable=SC2046,1091,1090
|
|
|
|
source "$(dirname "$0")/common"
|
|
|
|
|
|
|
|
REV=${REVISION}${APPEND_TO_DIR}
|
|
|
|
|
|
|
|
cd "${STAGING_ROOT}/${CATEGORY_STUB}/${REV}" || { echo "Failed to change directory"; ret_val=1; exit 1; }
|
|
|
|
ret_val=$?
|
|
|
|
|
|
|
|
if [ $ret_val -eq "0" ]; then
|
|
|
|
TARGET="${PRODUCTION_ROOT}/${CATEGORY_STUB}/${REV:0:3}"
|
|
|
|
mkdir -p "${TARGET}"
|
2022-07-14 03:01:23 +00:00
|
|
|
echo "Syncing ${REVISION}"
|
2022-07-12 07:59:19 +00:00
|
|
|
sudo -l && time fpsync -o '-av --numeric-ids --no-compress --chown=10004:10005' -n 18 -t /mnt/compose/partitions "${STAGING_ROOT}/${CATEGORY_STUB}/${REV}/" "${TARGET}/"
|
2022-07-08 09:22:58 +00:00
|
|
|
|
2022-07-13 15:46:06 +00:00
|
|
|
# Full file list update for production root
|
2022-07-14 03:01:23 +00:00
|
|
|
cd "${PRODUCTION_ROOT}/" || { echo "Failed to change directory"; exit 1; }
|
|
|
|
echo "Getting a full file list for the root dir"
|
2022-07-13 15:46:06 +00:00
|
|
|
find . > fullfilelist
|
|
|
|
if [[ -f /usr/local/bin/create-filelist ]]; then
|
|
|
|
# We're already here, but Justin Case wanted this
|
|
|
|
cd "${PRODUCTION_ROOT}/" || { echo "Failed to change directory"; exit 1; }
|
|
|
|
/bin/cp fullfiletimelist-rocky fullfiletimelist-rocky-old
|
|
|
|
/usr/local/bin/create-filelist > fullfiletimelist-rocky
|
|
|
|
cp fullfiletimelist-rocky fullfiletimelist
|
|
|
|
fi
|
|
|
|
# Full file list update for rocky linux itself
|
2022-07-08 09:22:58 +00:00
|
|
|
cd "${PRODUCTION_ROOT}/${CATEGORY_STUB}/" || { echo "Failed to change directory"; exit 1; }
|
|
|
|
# Hardlink everything except xml files
|
2022-07-14 03:01:23 +00:00
|
|
|
echo "Hard linking"
|
2022-07-08 09:22:58 +00:00
|
|
|
hardlink -x '.*\.xml.*' "${REVISION}"
|
2022-07-14 03:01:23 +00:00
|
|
|
echo "Getting a full file list for the rocky dir"
|
2022-07-08 09:22:58 +00:00
|
|
|
find . > fullfilelist
|
|
|
|
if [[ -f /usr/local/bin/create-filelist ]]; then
|
|
|
|
# We're already here, but Justin Case wanted this
|
|
|
|
cd "${PRODUCTION_ROOT}/${CATEGORY_STUB}/" || { echo "Failed to change directory"; exit 1; }
|
|
|
|
/bin/cp fullfiletimelist-rocky fullfiletimelist-rocky-old
|
|
|
|
/usr/local/bin/create-filelist > fullfiletimelist-rocky
|
|
|
|
cp fullfiletimelist-rocky fullfiletimelist
|
|
|
|
fi
|
|
|
|
chown 10004:10005 fullfilelist fullfiletimelist-rocky fullfiletimelist
|
|
|
|
fi
|
|
|
|
|