Replies: 1 comment 3 replies
-
https://borgbackup.readthedocs.io/en/stable/usage/tar.html there's the docs, but you are right, no example for import-tar (yet).
If you have multiple tar files, you'll need to come up with different archive names (must be unique) and a loop to iterate over them, doing one import-tar per tar archive. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Another simple question. I have a server which I do not have shell access to, but I create tar.gz backup from it's control panel. and have sftp access to grab them I'd like to pull these down with rclone of something, then process them with borg to get incremental compressed/deduped backups. I found the
borg import-tar
command, but there don't seem to be any examples of it's usage, and I'm trying to figure out the best way to script my scenario. Basically, I pull down multiple tar.gz files. They each have the same directory structure, so I can't just dump them all in the same place because they'll intermingle in the same directories, and that would be undesirable.Can you provide any example usage for this? I'm not really sure how to handle this on the borg side if I did say a for loop on each tarball.
Thanks in advance,
-Dan
Beta Was this translation helpful? Give feedback.
All reactions