Replies: 2 comments
|
Right now we just support 1 repo per folder. Admittedly I personally only scratch the surface of what borgbackup can do. If the functionality you want to add lines up with features supported by borgbackup feel free to implement and open a PR. Make sure the new work lines up with the existing structure/flow/ease of use the rest of the app provides 🙏 if you've got questions about implementation ask, if you've got ideas on refactoring existing functionality lmk. I am a Python/FastApi beginner! |
0 replies
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
I do think this one belongs more here:
If the backups are viewed from the schedule perspective is is possible to separate multiple backup folders inside one archive.
When the different schedules have different prefixes it possible too use
--glob-archivesfilter to select relevant archives.View archives from the schedule point should then use that filter and because we have the schedule information it's also possible to view the reason why a backup is still present.
I use currently the following shell command:
The 'Backups' will hold the data per schedule so the data from the other schedule will not be inside that backup.
Might confuse some people as the list of all backups will show all labels.
The reason I ask this is that if there is no separation then a 1 on 1 relation between the repository and the backup folder would be simpler.
Otherwise the purge scheme will only check for the current set of data and purge all others.
For example if a
5 hourpurge schema was setup for 1 and a1 hour + 7 day + 1 weekschema the 5 hour schema will always purge the7 dayand1 weekbackups.All reactions