-
Notifications
You must be signed in to change notification settings - Fork 9
FAQ
Leslie Leung edited this page Nov 8, 2023
·
2 revisions
REAPER currently does not support archive rotaion. But on filesystem and S3, it is easy to setup a rotation policy.
On filesystems, you can have 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 "lifecycle" for objects.
For BlackBlaze, see HERE.