diff options
-rwxr-xr-x | borger | 17 |
1 files changed, 10 insertions, 7 deletions
@@ -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=$? |