mirror of
https://projects.torsion.org/witten/borgmatic.git
synced 2025-03-14 12:22:55 +00:00
49 lines
1.4 KiB
Python
49 lines
1.4 KiB
Python
import logging
|
|
|
|
import borgmatic.borg.extract
|
|
import borgmatic.borg.repo_list
|
|
import borgmatic.config.validate
|
|
import borgmatic.hooks.command
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def run_extract(
|
|
config_filename,
|
|
repository,
|
|
config,
|
|
local_borg_version,
|
|
extract_arguments,
|
|
global_arguments,
|
|
local_path,
|
|
remote_path,
|
|
):
|
|
'''
|
|
Run the "extract" action for the given repository.
|
|
'''
|
|
if extract_arguments.repository is None or borgmatic.config.validate.repositories_match(
|
|
repository, extract_arguments.repository
|
|
):
|
|
logger.info(f'Extracting archive {extract_arguments.archive}')
|
|
borgmatic.borg.extract.extract_archive(
|
|
global_arguments.dry_run,
|
|
repository['path'],
|
|
borgmatic.borg.repo_list.resolve_archive_name(
|
|
repository['path'],
|
|
extract_arguments.archive,
|
|
config,
|
|
local_borg_version,
|
|
global_arguments,
|
|
local_path,
|
|
remote_path,
|
|
),
|
|
extract_arguments.paths,
|
|
config,
|
|
local_borg_version,
|
|
global_arguments,
|
|
local_path=local_path,
|
|
remote_path=remote_path,
|
|
destination_path=extract_arguments.destination,
|
|
strip_components=extract_arguments.strip_components,
|
|
progress=extract_arguments.progress,
|
|
)
|