mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-24 16:55:36 +00:00
BORG_LOCK_WAIT=n env var to set default for --lock-wait option, fixes #5279
This commit is contained in:
parent
78b1301b98
commit
e57ff29f22
2 changed files with 4 additions and 1 deletions
|
@ -43,6 +43,9 @@ General:
|
|||
So, if you have a all-zero MAC address or other reasons to better externally control the host id, just set this
|
||||
environment variable to a unique value. If all your FQDNs are unique, you can just use the FQDN. If not,
|
||||
use fqdn@uniqueid.
|
||||
BORG_LOCK_WAIT
|
||||
You can set the default value for the ``--lock-wait`` option with this, so
|
||||
you do not need to give it as a commandline option.
|
||||
BORG_LOGGING_CONF
|
||||
When set, use the given filename as INI_-style logging configuration.
|
||||
A basic example conf can be found at ``docs/misc/logging.conf``.
|
||||
|
|
|
@ -468,7 +468,7 @@ def define_common_options(add_common_option):
|
|||
metavar="SECONDS",
|
||||
dest="lock_wait",
|
||||
type=int,
|
||||
default=1,
|
||||
default=int(os.environ.get("BORG_LOCK_WAIT", 1)),
|
||||
help="wait at most SECONDS for acquiring a repository/cache lock (default: %(default)d).",
|
||||
)
|
||||
add_common_option(
|
||||
|
|
Loading…
Reference in a new issue