refactor(backup): pass key and account to exec

pull/35/head
Houkime 2023-01-18 10:07:04 +00:00 committed by Inex Code
parent 6bf5ee4b64
commit f65c0522b0
1 changed files with 4 additions and 1 deletions

View File

@ -126,7 +126,10 @@ class ResticController(metaclass=SingletonMetaclass):
return f"rclone:backblaze:{self._repository_name}/sfbackup"
def rclone_args(self):
return "rclone.args=serve restic --stdio"
return "rclone.args=serve restic --stdio" + self.backend_rclone_args()
def backend_rclone_args(self):
return f"--b2-account {self._backblaze_account} --b2-key {self._backblaze_key}"
def initialize_repository(self):
"""