Add configuration option for settings Borg's temporary directory (#341).

Reviewed-on: witten/borgmatic#356
This commit is contained in:
Dan Helfman 2020-08-26 16:54:49 +00:00
commit a3387953a9
2 changed files with 7 additions and 0 deletions

View File

@ -9,6 +9,7 @@ OPTION_TO_ENVIRONMENT_VARIABLE = {
'encryption_passcommand': 'BORG_PASSCOMMAND',
'encryption_passphrase': 'BORG_PASSPHRASE',
'ssh_command': 'BORG_RSH',
'temporary_directory': 'TMPDIR',
}
DEFAULT_BOOL_OPTION_TO_ENVIRONMENT_VARIABLE = {

View File

@ -228,6 +228,12 @@ map:
Remote network upload rate limit in kiBytes/second. Defaults
to unlimited.
example: 100
temporary_directory:
type: str
desc: |
Directory where temporary files are stored. Defaults to
$TMPDIR
example: /path/to/tmpdir
ssh_command:
type: str
desc: |