mirror of
https://projects.torsion.org/witten/borgmatic.git
synced 2025-01-06 20:01:54 +00:00
50 lines
1.3 KiB
Python
50 lines
1.3 KiB
Python
import logging
|
|
|
|
import borgmatic.actions.arguments
|
|
import borgmatic.borg.delete
|
|
import borgmatic.borg.repo_delete
|
|
import borgmatic.borg.repo_list
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def run_delete(
|
|
repository,
|
|
config,
|
|
local_borg_version,
|
|
delete_arguments,
|
|
global_arguments,
|
|
local_path,
|
|
remote_path,
|
|
):
|
|
'''
|
|
Run the "delete" action for the given repository and archive(s).
|
|
'''
|
|
if delete_arguments.repository is None or borgmatic.config.validate.repositories_match(
|
|
repository, delete_arguments.repository
|
|
):
|
|
logger.answer(f'{repository.get("label", repository["path"])}: Deleting archives')
|
|
|
|
archive_name = (
|
|
borgmatic.borg.repo_list.resolve_archive_name(
|
|
repository['path'],
|
|
delete_arguments.archive,
|
|
config,
|
|
local_borg_version,
|
|
global_arguments,
|
|
local_path,
|
|
remote_path,
|
|
)
|
|
if delete_arguments.archive
|
|
else None
|
|
)
|
|
|
|
borgmatic.borg.delete.delete_archives(
|
|
repository,
|
|
config,
|
|
local_borg_version,
|
|
borgmatic.actions.arguments.update_arguments(delete_arguments, archive=archive_name),
|
|
global_arguments,
|
|
local_path,
|
|
remote_path,
|
|
)
|