toolkit/sync/sync-to-prod.sh

20 lines
493 B
Bash
Raw Normal View History

2021-07-05 06:50:25 +00:00
#!/bin/bash
# Syncs everything from staging to production
# Source common variables
2021-07-06 19:24:29 +00:00
source "./common"
REV=${1}
cd "${STAGING_ROOT}/${CATEGORY_STUB}/${REV}"
2021-07-05 06:50:25 +00:00
ret_val=$?
2021-07-05 06:50:25 +00:00
if [ $ret_val -eq "0" ]; then
TARGET="${PRODUCTION_ROOT}/${CATEGORY_STUB}/${REV:0:3}"
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