0
0
Fork 0
mirror of https://projects.torsion.org/witten/borgmatic.git synced 2025-04-11 15:51:23 +00:00
witten_borgmatic/borgmatic/actions/transfer.py

32 lines
657 B
Python

import logging
import borgmatic.borg.transfer
logger = logging.getLogger(__name__)
def run_transfer(
repository,
config,
local_borg_version,
transfer_arguments,
global_arguments,
local_path,
remote_path,
):
'''
Run the "transfer" action for the given repository.
'''
logger.info(
'Transferring archives to repository'
)
borgmatic.borg.transfer.transfer_archives(
global_arguments.dry_run,
repository['path'],
config,
local_borg_version,
transfer_arguments,
global_arguments,
local_path=local_path,
remote_path=remote_path,
)