mirror of
https://github.com/octoleo/restic.git
synced 2024-11-11 07:41:03 +00:00
74ebc650ab
Allow keeping hourly/daily/weekly/monthly/yearly snapshots for a given time period. This adds the following flags/parameters to restic forget: --keep-within-hourly duration --keep-within-daily duration --keep-within-weekly duration --keep-within-monthly duration --keep-within-yearly duration Includes following changes: - Add tests for --keep-within-hourly (and friends) - Add documentation for --keep-within-hourly (and friends) - Add changelog for --keep-within-hourly (and friends)
21 lines
744 B
Plaintext
21 lines
744 B
Plaintext
Enhancement: Add --keep-within-hourly switch to restic forget
|
|
|
|
restic forget allowed users to specify keeping a given number of
|
|
hourly backups, or to keep all backups within a given interval,
|
|
but not both, that is to specify keeping hourly backups within
|
|
a given interval.
|
|
|
|
The --keep-within-hourly switch offers this functionality, and
|
|
parallell switches for daily/weekly/monthly/yearly are also
|
|
implemneted. The new switches are:
|
|
|
|
--keep-within-hourly <1y2m3d4h>
|
|
--keep-within-daily <1y2m3d4h>
|
|
--keep-within-weekly <1y2m3d4h>
|
|
--keep-within-monthly <1y2m3d4h>
|
|
--keep-within-yearly <1y2m3d4h>
|
|
|
|
https://github.com/restic/restic/issues/3414
|
|
https://github.com/restic/restic/pull/3416
|
|
https://forum.restic.net/t/forget-policy/4014/11
|