autorestic icon indicating copy to clipboard operation
autorestic copied to clipboard

Add a cron option to the forget/prune policies

Open jdumas opened this issue 1 year ago • 0 comments

Is your feature request related to a problem? Please describe. This is related to #2 and #158, but somehow I don't think it's currently possible to do this.

Describe the solution you'd like I would like to set a different cron option for the backup and for the forget/prune commands. I.e. something like this:

locations:
  my-location:
    from: /data
    to: my-backend
    cron: '0 3 * * 0' # Every Sunday at 3:00
    forget: prune # Run forget/prune after backup
    options:
      forget:
        keep-last: 5 # always keep at least 5 snapshots
        cron: '0 0 1 * *' # Only run forget/prune once a month

jdumas avatar Apr 28 '24 23:04 jdumas