mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-23 00:07:38 +00:00
[docs] improve remote-path description
(ported bebehei's 1.0-maint change to master)
This commit is contained in:
parent
0db058345b
commit
d5707929fd
2 changed files with 2 additions and 2 deletions
|
@ -148,7 +148,7 @@ General:
|
||||||
When set, use this command instead of ``ssh``. This can be used to specify ssh options, such as
|
When set, use this command instead of ``ssh``. This can be used to specify ssh options, such as
|
||||||
a custom identity file ``ssh -i /path/to/private/key``. See ``man ssh`` for other options.
|
a custom identity file ``ssh -i /path/to/private/key``. See ``man ssh`` for other options.
|
||||||
BORG_REMOTE_PATH
|
BORG_REMOTE_PATH
|
||||||
When set, use the given path/filename as remote path (default is "borg").
|
When set, use the given path as borg executable on the remote (defaults to "borg" if unset).
|
||||||
Using ``--remote-path PATH`` commandline option overrides the environment variable.
|
Using ``--remote-path PATH`` commandline option overrides the environment variable.
|
||||||
BORG_FILES_CACHE_TTL
|
BORG_FILES_CACHE_TTL
|
||||||
When set to a numeric value, this determines the maximum "time to live" for the files cache
|
When set to a numeric value, this determines the maximum "time to live" for the files cache
|
||||||
|
|
|
@ -1888,7 +1888,7 @@ def process_epilog(epilog):
|
||||||
common_group.add_argument('--umask', dest='umask', type=lambda s: int(s, 8), default=UMASK_DEFAULT, metavar='M',
|
common_group.add_argument('--umask', dest='umask', type=lambda s: int(s, 8), default=UMASK_DEFAULT, metavar='M',
|
||||||
help='set umask to M (local and remote, default: %(default)04o)')
|
help='set umask to M (local and remote, default: %(default)04o)')
|
||||||
common_group.add_argument('--remote-path', dest='remote_path', metavar='PATH',
|
common_group.add_argument('--remote-path', dest='remote_path', metavar='PATH',
|
||||||
help='set remote path to executable (default: "borg")')
|
help='use PATH as borg executable on the remote (default: "borg")')
|
||||||
common_group.add_argument('--remote-ratelimit', dest='remote_ratelimit', type=int, metavar='rate',
|
common_group.add_argument('--remote-ratelimit', dest='remote_ratelimit', type=int, metavar='rate',
|
||||||
help='set remote network upload rate limit in kiByte/s (default: 0=unlimited)')
|
help='set remote network upload rate limit in kiByte/s (default: 0=unlimited)')
|
||||||
common_group.add_argument('--consider-part-files', dest='consider_part_files',
|
common_group.add_argument('--consider-part-files', dest='consider_part_files',
|
||||||
|
|
Loading…
Reference in a new issue