-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
provide a way to easily exclude sub-trees from backup #6
Comments
The file list collection is handled by the system For |
The |
The only problem with handling this in The specific areas I'm concerned about are long file name (greater than 100 characters), sparse file handling (currently supported is GNU and PAX format, or at least PAX as implemented by GNU tar), extended/SElinux attributes, file sizes greater than 8GB, and probably a few other edge cases I'm not thinking of. I believe that most of these were addressed when I added PAX format support (which was required to pick up extended/SElinux attributes), and I've done test cases for each of them, but I'll have to assemble the test cases into a self-contained script and include that in the code repository. That reminds me, I should document all the special considerations I discovered when writing snebu's tar code. BTW, I did submit a feature request to the findutils mailing list. The list doesn't appear to be that active, so if I don't hear back from them in the next week I'll write the patch for |
Hey, I got an answer back on one of the GNU mailing lists, pointing to an earlier discussion about adding additional attribute flags to Since this isn't a finalized feature in Oh, and eventually I'll probably end up making a custom client side binary, which combines what I'm using |
Sounds good, having such |
[This isn't an issue, more a feature request, open for discussion]
Many (most?) backup tools allow end-users (i.e. not system administrators) to exclude parts of the files they control from the system backup. It would be great if Snebu had a way to achieve that. Two commonly found implementations:
.nobackup
filenodump
filesystem flag (cf.chattr
'sd
attribute)I tend to prefer the
nodump
flag as it allows finer-grained control and feels more "natural"The text was updated successfully, but these errors were encountered: