#!/bin/bash # This script is used by the CRON Daemon to prune backups via the Restic backup utility # Load restic varibles source /etc/restic.d/backblaze.conf # Delete backups according to policy restic forget \ "$RESTIC_COMMON_OPTS" \ --prune \ --keep-daily 30 \ --keep-weekly 52 \ --keep-monthly 3 \ --keep-yearly 4