feature(backup): add a restore function to restic backuper

restic-rewrite-api
Houkime 2023-02-08 15:40:45 +00:00
parent 3970524bce
commit 1568ee68a4
1 changed files with 10 additions and 0 deletions

View File

@ -69,3 +69,13 @@ class ResticBackuper(AbstractBackuper):
# stdout=log_file,
# stderr=subprocess.STDOUT,
# )
def restore_from_backup(self, repo_name, snapshot_id, folder):
"""
Restore from backup with restic
"""
restore_command = self.restic_command(
repo_name, "restore", snapshot_id, "--target", folder
)
subprocess.run(restore_command, shell=False)