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
|
|
|
|
|
|
|
|
export OUTDIR="$BACKUPSDIR/{{ nextcloud_url }}"
|
|
|
|
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
|
|
|
|
# Enforce permissions on our output directory since the git user will need them
|
|
|
|
chown root.git "$OUTDIR"
|
|
|
|
chmod 770 "$OUTDIR"
|
|
|
|
|
|
|
|
# Purge oldest backup if we need to
|
|
|
|
currentbackupcount="$(ls -1 "$OUTDIR" | wc -l)"
|
2020-05-06 09:46:45 -05:00
|
|
|
# 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 "$OUTDIR"/"$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
|
|
|
|
log "Enabling maintenance mode"
|
2020-05-06 02:03:23 -05:00
|
|
|
sudo -u www-data ./occ maintenance:mode --on
|
2020-05-06 02:01:30 -05:00
|
|
|
trap 'sudo -u www-data ./occ maintenance:mode --off' EXIT
|
|
|
|
date="$(date -Iseconds)"
|
|
|
|
log "Creating data backup"
|
2020-05-06 23:21:54 -05:00
|
|
|
tar czhf "$OUTDIR/$date-data.tar.gz" "/var/nextcloud" --exclude "files_trashbin"
|
2020-05-06 02:01:30 -05:00
|
|
|
log "Creating webroot backup"
|
|
|
|
tar czf "$OUTDIR/$date-webroot.tar.gz" "{{ nextcloud_webroot }}"
|
|
|
|
log "Creating DB backup"
|
|
|
|
mysqldump nextcloud --single-transaction | gzip > "$OUTDIR/$date-db.sql.gz"
|
|
|
|
log "Unsetting maintenance mode"
|
|
|
|
sudo -u www-data ./occ maintenance:mode --off
|
2020-05-06 02:12:17 -05:00
|
|
|
trap : EXIT
|
2020-05-06 02:01:30 -05:00
|
|
|
else
|
|
|
|
log "Could not change directory: $OUTDIR"
|
|
|
|
return 3
|
|
|
|
fi
|
|
|
|
|