2
2
mirror of https://github.com/octoleo/restic.git synced 2024-11-23 05:12:10 +00:00

minor tweaks

This commit is contained in:
Michael Eischer 2024-07-24 19:28:45 +02:00
parent 77ec8ae091
commit 636bf2915e
4 changed files with 7 additions and 7 deletions

View File

@ -9,7 +9,7 @@ repositories with an empty password, and specifying `--insecure-no-password`
while also passing a password to restic via a CLI option or environment
variable results in an error.
The `init` and `copy` commands adds the related `--from-insecure-no-password`
The `init` and `copy` commands add the related `--from-insecure-no-password`
option, which applies to the source repository. The `key add` and `key passwd`
commands add the `--new-insecure-no-password` option to add or set an empty
password.

View File

@ -1,7 +1,7 @@
Bugfix: Handle unreadable xattrs in folders above `backup` target
Bugfix: Handle unreadable xattrs in folders above `backup` source
When backup targets are specified using absolute paths, `backup` also includes
information about the parent folders of the backup targets in the snapshot.
When backup sources are specified using absolute paths, `backup` also includes
information about the parent folders of the backup sources in the snapshot.
If the extended attributes for some of these folders could not be read due to
missing permissions, this caused the backup to fail. This has now been fixed.

View File

@ -1,8 +1,8 @@
Bugfix: Handle UTF-16 password files in `key` command correctly
Previously, `key add` and `key passwd` did not properly decode UTF-16
encoded passwords read from a password file. This has now been fix to
correctly match the encoding when opening a repository.
encoded passwords read from a password file. This has now been fixed
to correctly match the encoding when opening a repository.
https://github.com/restic/restic/issues/4850
https://github.com/restic/restic/pull/4851

View File

@ -1,4 +1,4 @@
Enhancement: Omit snapshot creation if nothing changed
Enhancement: Optionally skip snapshot creation if nothing changed
The `backup` command always created a snapshot even if nothing in the
backup set changed compared to the parent snapshot.