ansible/roles/terraria/templates/backup.sh

51 lines
1.3 KiB
Bash
Raw Normal View History

2020-05-19 12:02:30 -05:00
#! /bin/bash
#
# terraria.sh
# Backup script for Gitea. Meant to be sourced by our main backup script
# Copyright (C) 2020 Vintage Salt <rehashedsalt@cock.li>
#
# Distributed under terms of the MIT license.
#
set -e
export TERRARIADIR="{{ terraria_root }}/{{ terraria_name }}"
export OUTDIR="$TERRARIADIR/backups"
2020-05-19 12:10:13 -05:00
retention=144 # 30-minute intervals, 3 days
2020-05-19 12:02:30 -05:00
2020-05-19 12:14:27 -05:00
# Helper functions
log() {
[ -z "$1" ] && return 1
printf "$(date -Iseconds): $1\n"
}
2020-05-19 12:02:30 -05:00
# Sanity checks
if ! [ -d "$OUTDIR" ]; then
if ! mkdir "$OUTDIR"; then
log "Unable to find or create output directory: $OUTDIR"
return 2
fi
fi
# Enforce permissions on our output directory since the terraria user will need them
chown terraria.ter-admin "$OUTDIR"
2020-05-19 12:02:30 -05:00
chmod 770 "$OUTDIR"
# Purge oldest backup if we need to
currentbackupcount="$(ls -1 "$OUTDIR" | wc -l)"
if (( currentbackupcount >= retention )); then
lastbackup="$(find "$OUTDIR" -name \*.wld 2>/dev/null | sort | head -n 1)"
2020-05-19 12:02:30 -05:00
if [ -f "$lastbackup" ]; then
log "Removing old backup: $lastbackup"
rm "$lastbackup"
fi
fi
# WE MAKE BACKUP NOW SERGEI
if cd "$OUTDIR"; then
log "Initiating terraria dump"
2020-05-19 12:19:21 -05:00
su terraria -c "cp \"$TERRARIADIR/worlds/world.wld\" \"$OUTDIR/world-$(date -Iseconds).wld\""
2020-05-19 12:02:30 -05:00
else
log "Could not change directory: $OUTDIR"
return 3
fi