6 lines
295 B
Django/Jinja
6 lines
295 B
Django/Jinja
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
# shellcheck source=/dev/null
|
|
source '{{ restic_config_path }}'
|
|
exec '{{ restic_binary }}' forget --prune --keep-daily {{ restic_keep_daily }} --keep-weekly {{ restic_keep_weekly }} --keep-monthly {{ restic_keep_monthly }} --tag '{{ healthcheck_profile }}'
|