Fix order of arguments for tar
This commit is contained in:
parent
4c829bf782
commit
7646396dac
@ -43,7 +43,7 @@ if cd "{{ nextcloud_webroot }}"; then
|
|||||||
trap 'sudo -u www-data ./occ maintenance:mode --off' EXIT
|
trap 'sudo -u www-data ./occ maintenance:mode --off' EXIT
|
||||||
date="$(date -Iseconds)"
|
date="$(date -Iseconds)"
|
||||||
log "Creating data backup"
|
log "Creating data backup"
|
||||||
tar czhf --exclude "files_trashbin" "$OUTDIR/$date-data.tar.gz" "/var/nextcloud"
|
tar --exclude "files_trashbin" czhf "$OUTDIR/$date-data.tar.gz" "/var/nextcloud"
|
||||||
log "Creating webroot backup"
|
log "Creating webroot backup"
|
||||||
tar czf "$OUTDIR/$date-webroot.tar.gz" "{{ nextcloud_webroot }}"
|
tar czf "$OUTDIR/$date-webroot.tar.gz" "{{ nextcloud_webroot }}"
|
||||||
log "Creating DB backup"
|
log "Creating DB backup"
|
||||||
|
Loading…
Reference in New Issue
Block a user