From 2c91b8cd5df1ee52d48427592ce647dd59768688 Mon Sep 17 00:00:00 2001 From: Salt Date: Mon, 22 Jun 2020 11:05:56 -0500 Subject: [PATCH] Make matrix backups --- roles/matrix/tasks/main.yml | 5 +++++ roles/matrix/templates/backup.sh | 38 ++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 roles/matrix/templates/backup.sh diff --git a/roles/matrix/tasks/main.yml b/roles/matrix/tasks/main.yml index b1def38..8d36538 100644 --- a/roles/matrix/tasks/main.yml +++ b/roles/matrix/tasks/main.yml @@ -89,4 +89,9 @@ group: "root" notify: restart synapse when: not p.stat.exists + - name: Template out backup module + template: + src: "backup.sh" + dest: "/opt/backups/modules/{{ matrix_url }}.sh" + mode: "0600" become: yes diff --git a/roles/matrix/templates/backup.sh b/roles/matrix/templates/backup.sh new file mode 100644 index 0000000..8feb819 --- /dev/null +++ b/roles/matrix/templates/backup.sh @@ -0,0 +1,38 @@ +#! /bin/bash +# +# synapse.sh +# Backup script for Synapse. Meant to be sourced by our main backup script +# Copyright (C) 2020 Vintage Salt +# +# Distributed under terms of the MIT license. +# + +set -e + +export OUTDIR="$BACKUPSDIR/{{ mcname }}" +retention=7 # 7-day retention period + +# Sanity checks +if [ -z "$BACKUPSDIR" ]; then + log "BACKUPSDIR was undefined. Run the main backup script instead of this one." + return 1 +fi +if ! [ -d "$OUTDIR" ]; then + if ! mkdir "$OUTDIR"; then + log "Unable to find or create output directory: $OUTDIR" + return 2 + fi +fi + +# Purge oldest backup if we need to +currentbackupcount="$(ls -1 "$OUTDIR" | wc -l)" +if (( currentbackupcount >= retention )); then + lastbackup="$(find "$OUTDIR" -name \*.tar.gz 2>/dev/null | sort | head -n 1)" + if [ -f "$lastbackup" ]; then + log "Removing old backup: $lastbackup" + rm "$lastbackup" + fi +fi +# WE MAKE BACKUP NOW SERGEI +tar czf "$OUTDIR/{{ matrix_url }}-$(date -Iseconds).tar.gz" "/var/lib/matrix-synapse/" "/etc/matrix-synapse/" +