mirror of
https://projects.torsion.org/witten/borgmatic.git
synced 2025-01-06 20:01:54 +00:00
33 lines
1.1 KiB
Python
33 lines
1.1 KiB
Python
import logging
|
|
|
|
import borgmatic.config.paths
|
|
from borgmatic.borg import environment
|
|
from borgmatic.execute import execute_command_and_capture_output
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def local_borg_version(config, local_path='borg'):
|
|
'''
|
|
Given a configuration dict and a local Borg executable path, return a version string for it.
|
|
|
|
Raise OSError or CalledProcessError if there is a problem running Borg.
|
|
Raise ValueError if the version cannot be parsed.
|
|
'''
|
|
full_command = (
|
|
(local_path, '--version')
|
|
+ (('--info',) if logger.getEffectiveLevel() == logging.INFO else ())
|
|
+ (('--debug', '--show-rc') if logger.isEnabledFor(logging.DEBUG) else ())
|
|
)
|
|
output = execute_command_and_capture_output(
|
|
full_command,
|
|
extra_environment=environment.make_environment(config),
|
|
working_directory=borgmatic.config.paths.get_working_directory(config),
|
|
borg_local_path=local_path,
|
|
borg_exit_codes=config.get('borg_exit_codes'),
|
|
)
|
|
|
|
try:
|
|
return output.split(' ')[1].strip()
|
|
except IndexError:
|
|
raise ValueError('Could not parse Borg version string')
|