mirror of
https://projects.torsion.org/witten/borgmatic.git
synced 2025-03-15 04:34:52 +00:00
30 lines
643 B
Python
30 lines
643 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,
|
|
)
|