view scripts/backup-push @ 84:6bd56ca54bfa

Add more information about the history of V3 and V4.
author John "Elwin" Edwards
date Sun, 15 Apr 2018 21:46:57 -0400
parents ea014ed97581
children 44cf8c7c2c7a
line wrap: on
line source

#!/bin/sh
# A backup script for high score lists, log files, saved games, and ttyrecs.
# Run from cron.  Set up SSH keys to BACKUPACCT first.

SOURCE='/var/dgl/var/games/roguelike/'
BACKUPACCT='rlgbackup@icemonster.rlgallery.org'
NEWDIR=`date +%Y.%m.%d-%H.%M.%S`
TTYRECSRC=/var/dgl/dgldir/ttyrec/
TTYRECDEST="$BACKUPACCT:ttyrecs"

rsync -rqz "$SOURCE" "$BACKUPACCT:games/$NEWDIR"
rsync -rqz -pt "$TTYRECSRC" "$TTYRECDEST"

exit