ansible/roles/nextcloud/templates/backup.sh

62 lines
1.9 KiB
Bash
Raw Normal View History

2020-05-06 02:01:30 -05:00
#! /bin/bash
#
# nextcloud.sh
# Backup script for Nextcloud. 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
2020-08-02 19:43:08 -05:00
export OUTDIR="$BACKUPSDIR/{{ nextcloud.url }}"
2020-05-10 00:39:51 -05:00
retention=5 # 5-day retention period
2020-05-06 02:01:30 -05:00
# 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
# Enforce permissions on our output directory
chown root. "$OUTDIR"
2020-05-06 02:01:30 -05:00
chmod 770 "$OUTDIR"
# Purge oldest backup if we need to
currentbackupcount="$(ls -1 "$OUTDIR" | wc -l)"
# Multiplying by three here because our backups are three-parters
if (( currentbackupcount >= retention * 3 )); then
lastbackup="$(find "$OUTDIR" -name \*.tar.gz 2>/dev/null | sort | head -n 1)"
lastbackup="${lastbackup%-*.gz}"
if [ -f "$file" ]; then
log "Removing old backups for: $lastbackup"
for file in "$lastbackup"*; do
log "Removing old backup part: $file"
rm "$file"
done
2020-05-06 02:01:30 -05:00
fi
fi
# WE MAKE BACKUP NOW SERGEI
if cd "{{ nextcloud_webroot }}"; then
date="$(date -Iseconds)"
{% if aws.backup_bucket is defined %}
# We have an AWS bucket to back straight up to
log "Piping data backup straight to S3"
tar czh "/var/nextcloud" --exclude "/var/nextcloud/*/files_trashbin" | aws s3 cp - "s3://{{ aws.backup_bucket }}/{{ nextcloud.url }}/{{ nextcloud.url }}-$date-data.tar.gz" --storage-class STANDARD
{% else %}
2020-05-06 02:01:30 -05:00
log "Creating data backup"
2020-08-02 19:43:08 -05:00
tar czhf "$OUTDIR/{{ nextcloud.url }}-$date-data.tar.gz" "/var/nextcloud" --exclude "/var/nextcloud/*/files_trashbin"
{% endif %}
2020-05-06 02:01:30 -05:00
log "Creating webroot backup"
2020-08-02 19:43:08 -05:00
tar czf "$OUTDIR/{{ nextcloud.url }}-$date-webroot.tar.gz" "{{ nextcloud_webroot }}"
2020-05-06 02:01:30 -05:00
else
log "Could not change directory: $OUTDIR"
return 3
fi