Skip to content
Leslie Leung edited this page Nov 8, 2023 · 2 revisions

Archive Rotation

REAPER currently does not support archive rotaion. But on filesystems and S3, it is easy to setup a rotation policy.

On filesystems, you can create a shell script and use cron to delete files older than 7 days, for example:

# RUN WITH CAUTION, this command would delete files without promting
find <path-to-dir> -type f -mtime +7 -delete

And on S3(or compatible services), there should be something like a "lifecycle" feature for objects.

For Backblaze, see HERE.

Clone this wiki locally