We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8c2b131 + 9a207ea commit 2502d22Copy full SHA for 2502d22
Containers/borgbackup/backupscript.sh
@@ -137,6 +137,9 @@ if [ "$BORG_MODE" = backup ]; then
137
# auto,zstd compression seems to has the best ratio based on:
138
# https://forum.level1techs.com/t/optimal-compression-for-borg-backups/145870/6
139
BORG_OPTS=(-v --stats --compression "auto,zstd" --exclude-caches)
140
+ if [ "$NEW_REPOSITORY" = 1 ]; then
141
+ BORG_OPTS+=(--progress)
142
+ fi
143
144
# Exclude the nextcloud log and audit log for GDPR reasons
145
BORG_EXCLUDE=(--exclude "/nextcloud_aio_volumes/nextcloud_aio_nextcloud/data/nextcloud.log*" --exclude "/nextcloud_aio_volumes/nextcloud_aio_nextcloud/data/audit.log")
0 commit comments