2026-08-03 12:26:42 +08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
# shellcheck source=/dev/null
|
|
|
|
|
source '{{ restic_config_path }}'
|
2026-08-12 17:35:23 +08:00
|
|
|
exec '{{ restic_binary }}' forget --prune --keep-daily {{ restic_keep_daily }} --keep-weekly {{ restic_keep_weekly }} --keep-monthly {{ restic_keep_monthly }} --tag '{{ restic_backup_profile }}'
|