fix: create directory if not exists
This commit is contained in:
parent
158506bc20
commit
12692193d5
1 changed files with 14 additions and 2 deletions
|
@ -55,12 +55,18 @@ class MariadbContainer(Container):
|
||||||
|
|
||||||
def backup(self):
|
def backup(self):
|
||||||
config = Config()
|
config = Config()
|
||||||
|
destination = self.backup_destination_path()
|
||||||
|
|
||||||
|
commands.run([
|
||||||
|
"mkdir",
|
||||||
|
"-p",
|
||||||
|
f"{destination}"
|
||||||
|
])
|
||||||
commands.run(self.dump_command())
|
commands.run(self.dump_command())
|
||||||
|
|
||||||
return restic.backup_files(
|
return restic.backup_files(
|
||||||
config.repository,
|
config.repository,
|
||||||
self.backup_destination_path(),
|
destination,
|
||||||
tags=self.tags
|
tags=self.tags
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -124,12 +130,18 @@ class MysqlContainer(Container):
|
||||||
|
|
||||||
def backup(self):
|
def backup(self):
|
||||||
config = Config()
|
config = Config()
|
||||||
|
destination = self.backup_destination_path()
|
||||||
|
|
||||||
|
commands.run([
|
||||||
|
"mkdir",
|
||||||
|
"-p",
|
||||||
|
f"{destination}"
|
||||||
|
])
|
||||||
commands.run(self.dump_command())
|
commands.run(self.dump_command())
|
||||||
|
|
||||||
return restic.backup_files(
|
return restic.backup_files(
|
||||||
config.repository,
|
config.repository,
|
||||||
self.backup_destination_path(),
|
destination,
|
||||||
tags=self.tags
|
tags=self.tags
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue