Actually wait let's use the URL

This commit is contained in:
Salt 2020-06-08 08:47:13 -05:00
parent 763f1d0209
commit 61175feabd

View File

@ -48,11 +48,11 @@ if cd "{{ nextcloud_webroot }}"; then
trap 'sudo -u www-data ./occ maintenance:mode --off' EXIT
date="$(date -Iseconds)"
log "Creating data backup"
tar czhf "$OUTDIR/nc-$date-data.tar.gz" "/var/nextcloud" --exclude "/var/nextcloud/*/files_trashbin"
tar czhf "$OUTDIR/{{ nextcloud_url }}-$date-data.tar.gz" "/var/nextcloud" --exclude "/var/nextcloud/*/files_trashbin"
log "Creating webroot backup"
tar czf "$OUTDIR/nc-$date-webroot.tar.gz" "{{ nextcloud_webroot }}"
tar czf "$OUTDIR/{{ nextcloud_url }}-$date-webroot.tar.gz" "{{ nextcloud_webroot }}"
log "Creating DB backup"
mysqldump nextcloud --single-transaction | gzip > "$OUTDIR/nc-$date-db.sql.gz"
mysqldump nextcloud --single-transaction | gzip > "$OUTDIR/{{ nextcloud_url }}-$date-db.sql.gz"
log "Unsetting maintenance mode"
sudo -u www-data ./occ maintenance:mode --off > /dev/null 2>&1
trap : EXIT