synchro: add synchronization script

This commit is contained in:
nemunaire 2018-01-19 15:20:39 +01:00
parent eeaff28b31
commit 4b21931ff0
1 changed files with 30 additions and 0 deletions

30
configs/synchro.sh Normal file
View File

@ -0,0 +1,30 @@
#!/bin/bash
# This script synchronizes first, the generated frontend and then
# retrieves submissions
BASEDIR="/srv"
FRONTEND_HOSTNAME="deimos"
SSH_OPTS="/usr/bin/ssh -p 22 -i ~/.ssh/id_ed25519 -o ControlMaster=auto -o ControlPath=/root/.ssh/%r@%h:%p -o ControlPersist=2 -o PasswordAuthentication=no -o StrictHostKeyChecking=no"
cd "${BASEDIR}"
# Synchronize CA
rsync -e "$SSH_OPTS" -av --delete PKI/shared "${FRONTEND_HOSTNAME}":"${BASEDIR}"/PKI
I=0
touch /tmp/stop
while ! [ -f SETTINGS/stop ] || [ /tmp/stop -nt SETTINGS/stop ]
do
# Synchronize static files pages
rsync -e "$SSH_OPTS" -av --delete TEAMS SETTINGS FILES "${FRONTEND_HOSTNAME}":"${BASEDIR}"
# Synchronize submissions
rsync -e "$SSH_OPTS" -av --delay-updates --temp-dir=.tmp/ --partial-dir=.tmp/ --remove-source-files "${FRONTEND_HOSTNAME}":"${BASEDIR}"/submissions/ submissions/
sleep 0.3
done
echo See you