forked from restic/restic
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Dev fuse symlink #1
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Since restic (or whatever library it is using) seems to respect/use AWS_PROFILE, it's worth documenting this.
Add exceptions for symlinks, sticky bits, and device nodes in the same places where the BSDSs and/or Darwin have them.
Citing Kerrisk, The Linux Programming Interface: The O_NOATIME flag is intended for use by indexing and backup programs. Its use can significantly reduce the amount of disk activity, because repeated disk seeks back and forth across the disk are not required to read the contents of a file and to update the last access time in the file’s i-node[.] restic used to do this, but the functionality was removed along with the fadvise call in restic#670.
The archiver uses FS.OpenFile, where FS is an instance of the FS interface. This is different from fs.OpenFile, which uses the OpenFile method provided by the fs package.
Co-authored-by: greatroar <[email protected]>
Add json output for diff command
Set O_NOATIME flag on Linux
add a note about installation via epel for RHEL / CentOS Stream 8 & 9
Fix test failures on Solaris
[#issue 3127] Add xattr support for Solaris
…-support Document AWS_PROFILE support
Loading any parent tree for these only wastes time and memory. Fixes restic#3641, where it was shown that the most recent tree will get picked. --parent is now implicitly ignored when --stdin is given.
Don't set a parent for --stdin backups
ls: Fix description for --host, --tag and --path options
doc: Fix block quote warning
Simplifies cut-and-paste of IDs (and makes stylistically consistent with other messages) restic#3659
Remove period from find messages
…to dev-fuse-symlink
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hoping you can merge this into your pull request restic#3668 for the main restic repository. The "latest" symlink in the restic fuse snapshots folders also lists a size of zero. This applies your same fix to that section of code as well.