cmd: fix typos found by codespell
This commit is contained in:
parent
043bf3567d
commit
cce8936802
6 changed files with 9 additions and 9 deletions
|
@ -3,8 +3,8 @@ test check-access-filters
|
||||||
# NOTE: Include Other tests may result in listing diffs due to rclone processing order change. False fail.
|
# NOTE: Include Other tests may result in listing diffs due to rclone processing order change. False fail.
|
||||||
#
|
#
|
||||||
# Tests are done in two phases:
|
# Tests are done in two phases:
|
||||||
# - EXCLUDE OTHER tests check that RCLONE_TEST files are only found in the explicity included directories
|
# - EXCLUDE OTHER tests check that RCLONE_TEST files are only found in the explicitly included directories
|
||||||
# - INCLUDE OTHER tesss check that RCLONE_TEST files are found in all directories not explicity excluded
|
# - INCLUDE OTHER tesss check that RCLONE_TEST files are found in all directories not explicitly excluded
|
||||||
#
|
#
|
||||||
# Each phase checks that:
|
# Each phase checks that:
|
||||||
# - missing RCLONE_TEST files in don't care directories don't cause failures
|
# - missing RCLONE_TEST files in don't care directories don't cause failures
|
||||||
|
|
|
@ -142,7 +142,7 @@ match. It doesn't alter the source or destination.
|
||||||
|
|
||||||
For the [crypt](/crypt/) remote there is a dedicated command,
|
For the [crypt](/crypt/) remote there is a dedicated command,
|
||||||
[cryptcheck](/commands/rclone_cryptcheck/), that are able to check
|
[cryptcheck](/commands/rclone_cryptcheck/), that are able to check
|
||||||
the checksums of the crypted files.
|
the checksums of the encrypted files.
|
||||||
|
|
||||||
If you supply the |--size-only| flag, it will only compare the sizes not
|
If you supply the |--size-only| flag, it will only compare the sizes not
|
||||||
the hashes as well. Use this for a quick check.
|
the hashes as well. Use this for a quick check.
|
||||||
|
|
|
@ -22,11 +22,11 @@ func init() {
|
||||||
|
|
||||||
var commandDefinition = &cobra.Command{
|
var commandDefinition = &cobra.Command{
|
||||||
Use: "cryptcheck remote:path cryptedremote:path",
|
Use: "cryptcheck remote:path cryptedremote:path",
|
||||||
Short: `Cryptcheck checks the integrity of a crypted remote.`,
|
Short: `Cryptcheck checks the integrity of an encrypted remote.`,
|
||||||
Long: `
|
Long: `
|
||||||
rclone cryptcheck checks a remote against a [crypted](/crypt/) remote.
|
rclone cryptcheck checks a remote against a [crypted](/crypt/) remote.
|
||||||
This is the equivalent of running rclone [check](/commands/rclone_check/),
|
This is the equivalent of running rclone [check](/commands/rclone_check/),
|
||||||
but able to check the checksums of the crypted remote.
|
but able to check the checksums of the encrypted remote.
|
||||||
|
|
||||||
For it to work the underlying remote of the cryptedremote must support
|
For it to work the underlying remote of the cryptedremote must support
|
||||||
some kind of checksum.
|
some kind of checksum.
|
||||||
|
@ -59,7 +59,7 @@ After it has run it will log the status of the encryptedremote:.
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
// cryptCheck checks the integrity of a crypted remote
|
// cryptCheck checks the integrity of an encrypted remote
|
||||||
func cryptCheck(ctx context.Context, fdst, fsrc fs.Fs) error {
|
func cryptCheck(ctx context.Context, fdst, fsrc fs.Fs) error {
|
||||||
// Check to see fcrypt is a crypt
|
// Check to see fcrypt is a crypt
|
||||||
fcrypt, ok := fdst.(*crypt.Fs)
|
fcrypt, ok := fdst.(*crypt.Fs)
|
||||||
|
|
|
@ -108,7 +108,7 @@ which can lead to "corrupted on transfer" errors. This is the case because
|
||||||
the client chooses indiscriminately which server to send commands to while
|
the client chooses indiscriminately which server to send commands to while
|
||||||
the servers all have different views of the state of the filing system.
|
the servers all have different views of the state of the filing system.
|
||||||
|
|
||||||
The "restrict" in authorized_keys prevents SHA1SUMs and MD5SUMs from beeing
|
The "restrict" in authorized_keys prevents SHA1SUMs and MD5SUMs from being
|
||||||
used. Omitting "restrict" and using ` + "`--sftp-path-override`" + ` to enable
|
used. Omitting "restrict" and using ` + "`--sftp-path-override`" + ` to enable
|
||||||
checksumming is possible but less secure and you could use the SFTP server
|
checksumming is possible but less secure and you could use the SFTP server
|
||||||
provided by OpenSSH in this case.
|
provided by OpenSSH in this case.
|
||||||
|
|
|
@ -16,7 +16,7 @@ var Command = &cobra.Command{
|
||||||
Short: `Run a test command`,
|
Short: `Run a test command`,
|
||||||
Long: `Rclone test is used to run test commands.
|
Long: `Rclone test is used to run test commands.
|
||||||
|
|
||||||
Select which test comand you want with the subcommand, eg
|
Select which test command you want with the subcommand, eg
|
||||||
|
|
||||||
rclone test memory remote:
|
rclone test memory remote:
|
||||||
|
|
||||||
|
|
|
@ -141,7 +141,7 @@ func Touch(ctx context.Context, f fs.Fs, remote string) error {
|
||||||
file, err := f.NewObject(ctx, remote)
|
file, err := f.NewObject(ctx, remote)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if errors.Is(err, fs.ErrorObjectNotFound) {
|
if errors.Is(err, fs.ErrorObjectNotFound) {
|
||||||
// Touching non-existant path, possibly creating it as new file
|
// Touching non-existent path, possibly creating it as new file
|
||||||
if remote == "" {
|
if remote == "" {
|
||||||
fs.Logf(f, "Not touching empty directory")
|
fs.Logf(f, "Not touching empty directory")
|
||||||
return nil
|
return nil
|
||||||
|
|
Loading…
Reference in a new issue