florian

joined 1 year ago
[โ€“] florian@lemmy.world 2 points 5 months ago (1 children)

What is "Make"? Hard to Google name.

Have you considered open sourcing you self built solution?

[โ€“] florian@lemmy.world 2 points 6 months ago* (last edited 6 months ago) (3 children)

I seems a long time ago, I build the same thing as you. For templating I used https://github.com/christopher-ramirez/secretary and as "database" I used Google sheets. Still use it at work.

It never was really user friendly so I am looking to replace it. That is also the main issue with your self build solution? Or are there other issues as well?

I didn't know about Documint. Looks interesting, will check it out, thanks ๐Ÿ‘

[โ€“] florian@lemmy.world 0 points 11 months ago
  1. So, you do want to run rsnapshot on the Borg repository (the destination to which is backed up)? Both rsnapshot and Borg keep a history, so you are keeping a history of when the Borg repository had which history. This will not be particularly efficient nor "as intended".
  2. be aware that Borg does incremental backups on file chunks, while rsnapshot works on whole files. So if a large file changes, rsnapshot will duplicate the storage used.
  3. a Borg repository is more like a database of chunks (similar to git), while rsnapshot recreates the original backup data.

According to https://borgbackup.readthedocs.io/en/stable/internals/data-structures.html the repository storage consists of 500mb files. So using rsnapshot on those, will not be work as you want it to.