mirror of
https://github.com/jbowdre/library-syncer.git
synced 2024-11-22 18:02:19 +00:00
22 lines
No EOL
895 B
Bash
22 lines
No EOL
895 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# initial sync is immediate, cron syncs have a random delay unless $CRON_DELAY==false
|
|
if [ $1 == "delay" ]; then
|
|
echo -e "\n[$(date +"%Y/%m/%d-%H:%M:%S")] Waiting for random delay..."
|
|
sleep $(( RANDOM % SYNC_DELAY_MAX_SECONDS + 1 ))
|
|
echo -e "[$(date +"%Y/%m/%d-%H:%M:%S")] Sync starts NOW!"
|
|
else
|
|
echo -e "\n[$(date +"%Y/%m/%d-%H:%M:%S")] Immediate sync starts NOW!"
|
|
fi
|
|
|
|
# sync
|
|
echo -e "[$(date +"%Y/%m/%d-%H:%M:%S")] Rsyncing content..."
|
|
/usr/bin/rsync -e "ssh -l syncer -p $SYNC_PORT -i /syncer/.ssh/id_syncer -o StrictHostKeyChecking=no" -av --exclude '*.json' $SYNC_PEER:/ /syncer/library
|
|
|
|
# generate content library manifest
|
|
echo -e "[$(date +"%Y/%m/%d-%H:%M:%S")] Generating content library manifest..."
|
|
/usr/bin/python3 /syncer/update_library_manifests.py -n 'Library' -p /syncer/library/
|
|
|
|
echo -e "[$(date +"%Y/%m/%d-%H:%M:%S")] Sync tasks complete!\n" |