49 lines
1.4 KiB
Python
49 lines
1.4 KiB
Python
import logging
|
|
|
|
import borgmatic.borg.mount
|
|
import borgmatic.borg.rlist
|
|
import borgmatic.config.validate
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def run_mount(
|
|
repository,
|
|
config,
|
|
local_borg_version,
|
|
mount_arguments,
|
|
global_arguments,
|
|
local_path,
|
|
remote_path,
|
|
):
|
|
'''
|
|
Run the "mount" action for the given repository.
|
|
'''
|
|
if mount_arguments.repository is None or borgmatic.config.validate.repositories_match(
|
|
repository, mount_arguments.repository
|
|
):
|
|
if mount_arguments.archive:
|
|
logger.info(
|
|
f'{repository.get("label", repository["path"])}: Mounting archive {mount_arguments.archive}'
|
|
)
|
|
else: # pragma: nocover
|
|
logger.info(f'{repository.get("label", repository["path"])}: Mounting repository')
|
|
|
|
borgmatic.borg.mount.mount_archive(
|
|
repository['path'],
|
|
borgmatic.borg.rlist.resolve_archive_name(
|
|
repository['path'],
|
|
mount_arguments.archive,
|
|
config,
|
|
local_borg_version,
|
|
global_arguments,
|
|
local_path,
|
|
remote_path,
|
|
),
|
|
mount_arguments,
|
|
config,
|
|
local_borg_version,
|
|
global_arguments,
|
|
local_path=local_path,
|
|
remote_path=remote_path,
|
|
)
|