From 429ee40220131bf6ee9fab68b65be2d265a8c496 Mon Sep 17 00:00:00 2001 From: Todd E Johnson Date: Wed, 31 Jul 2019 22:59:03 -0500 Subject: [PATCH] Add b2 connection limit to forget now that it prunes. --- usr/local/sbin/restic_backup.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr/local/sbin/restic_backup.sh b/usr/local/sbin/restic_backup.sh index 8ffa0b1..885427e 100644 --- a/usr/local/sbin/restic_backup.sh +++ b/usr/local/sbin/restic_backup.sh @@ -71,7 +71,8 @@ wait $! restic forget \ --verbose \ --tag $BACKUP_TAG \ - --prune + --option b2.connections=$B2_CONNECTIONS \ + --prune \ --group-by "paths,tags" \ --keep-daily $RETENTION_DAYS \ --keep-weekly $RETENTION_WEEKS \