From 6a3b827ca1866a2853bf435642b27e285e90b4cb Mon Sep 17 00:00:00 2001 From: Nick Sellen <git@nicksellen.co.uk> Date: Tue, 23 Jun 2020 13:37:42 +0100 Subject: [PATCH] Remove backup script Backups are handled elsewhere now --- backups/.gitkeep | 0 backups/mastodon_db_backup.sh | 38 ----------------------------------- 2 files changed, 38 deletions(-) delete mode 100644 backups/.gitkeep delete mode 100755 backups/mastodon_db_backup.sh diff --git a/backups/.gitkeep b/backups/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/backups/mastodon_db_backup.sh b/backups/mastodon_db_backup.sh deleted file mode 100755 index 79b62c4..0000000 --- a/backups/mastodon_db_backup.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash - -# A script which backs up the mastodon database(s) -set -o pipefail -set -e - -container=db -backupdir=/opt/backups/postgres - -# This performs a cyclic dump to files with the container and date in the name -# It also creates a link to a file containing the backup sequence number 0 or 1 -# which alternates (computed by modular division from the days since the epoch). -# Thus by deleting the linked file we can maintain just two backup files. -backup() { - local cname=$1 - local seqno="$(( $(date +%s) / 86400 % 2 ))" - local link="db-backup.$seqno.sql.gz" - local file="db-backup.$(date +%F_%R)-${cname}.sql.gz" - - echo "Backing up $cname -> $file @ $(date +%F_%R)" - - # delete previous backup with same seqno, don't complain if missing - rm -f $(readlink -f "$backupdir/$link") - - # create new backup file - docker-compose -f /opt/social.coop/sauce/docker/docker-compose.yml exec -T "$cname" pg_dumpall -U postgres -c -v | gzip >"$backupdir/$file" - status=$? - - # link the sequence number to it - ln -sf "$backupdir/"{"$file","$link"} - echo "Done. (Status $status @$(date +%F_%R))" -} - -# Iterate over all matching container names -#for cname in $(docker container ls -f name=$container --format '{{.Names}}') -#do - backup $container -#done -- GitLab