From 227c37abe647ba9d9eb45346a12794452f18c27a Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Fri, 12 Jul 2024 10:59:10 -0300 Subject: Fix: use --glob-archives instead of the deprecated --prefix option --- borger | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/borger b/borger index 7e35c38..899b738 100755 --- a/borger +++ b/borger @@ -180,13 +180,16 @@ function borger_create { # one specific archive and not apply to archives also. function borger_prune { info "Pruning repository..." - borg prune \ - --list \ - --prefix "${PLACEHOLDER}-" \ - --show-rc \ - --keep-daily $KEEPDAILY \ - --keep-weekly $KEEPWEEKLY \ - --keep-monthly $KEEPMONTHLY \ + borg prune \ + --list \ + # Option "--prefix" has been deprecated. + # Use "--glob-archives 'yourprefix*'" (-a) instead. + #--prefix "${PLACEHOLDER}-" \ + --glob-archives ${PLACEHOLDER}'*' \ + --show-rc \ + --keep-daily $KEEPDAILY \ + --keep-weekly $KEEPWEEKLY \ + --keep-monthly $KEEPMONTHLY \ prune_exit=$? -- cgit v1.2.3