mirror of
https://github.com/rclone/rclone.git
synced 2024-11-25 09:41:44 +08:00
sftp: clarify the docs for key_pem - fixes #7921
This commit is contained in:
parent
e111ffba9e
commit
13fa583368
|
@ -76,7 +76,17 @@ func init() {
|
|||
IsPassword: true,
|
||||
}, {
|
||||
Name: "key_pem",
|
||||
Help: "Raw PEM-encoded private key.\n\nIf specified, will override key_file parameter.",
|
||||
Help: `Raw PEM-encoded private key.
|
||||
|
||||
Note that this should be on a single line with line endings replaced with '\n', eg
|
||||
|
||||
key_pem = -----BEGIN RSA PRIVATE KEY-----\nMaMbaIXtE\n0gAMbMbaSsd\nMbaass\n-----END RSA PRIVATE KEY-----
|
||||
|
||||
This will generate the single line correctly:
|
||||
|
||||
awk '{printf "%s\\n", $0}' < ~/.ssh/id_rsa
|
||||
|
||||
If specified, it will override the key_file parameter.`,
|
||||
Sensitive: true,
|
||||
}, {
|
||||
Name: "key_file",
|
||||
|
|
Loading…
Reference in New Issue
Block a user