12345678910111213141516171819202122232425262728293031323334353637 |
- import logging
- from borgmatic.borg import environment, flags
- from borgmatic.execute import execute_command
- logger = logging.getLogger(__name__)
- def break_lock(
- repository_path,
- storage_config,
- local_borg_version,
- global_arguments,
- local_path='borg',
- remote_path=None,
- ):
- '''
- Given a local or remote repository path, a storage configuration dict, the local Borg version,
- an argparse.Namespace of global arguments, and optional local and remote Borg paths, break any
- repository and cache locks leftover from Borg aborting.
- '''
- umask = storage_config.get('umask', None)
- lock_wait = storage_config.get('lock_wait', None)
- full_command = (
- (local_path, 'break-lock')
- + (('--remote-path', remote_path) if remote_path else ())
- + (('--umask', str(umask)) if umask else ())
- + (('--log-json',) if global_arguments.log_json else ())
- + (('--lock-wait', str(lock_wait)) if lock_wait else ())
- + (('--info',) if logger.getEffectiveLevel() == logging.INFO else ())
- + (('--debug', '--show-rc') if logger.isEnabledFor(logging.DEBUG) else ())
- + flags.make_repository_flags(repository_path, local_borg_version)
- )
- borg_environment = environment.make_environment(storage_config)
- execute_command(full_command, borg_local_path=local_path, extra_environment=borg_environment)
|