mirror of
https://github.com/ZettaIO/restic-compose-backup.git
synced 2025-12-15 10:11:08 +00:00
fix: command line args of mydumper regex
This commit is contained in:
committed by
Silthus
parent
83b5d598c2
commit
158506bc20
@@ -50,7 +50,7 @@ class MariadbContainer(Container):
|
|||||||
f"{destination}",
|
f"{destination}",
|
||||||
"--no-views",
|
"--no-views",
|
||||||
"--compress",
|
"--compress",
|
||||||
"--regex '^(?!(mysql\.))'"
|
"'^(?!(mysql\.))'"
|
||||||
]
|
]
|
||||||
|
|
||||||
def backup(self):
|
def backup(self):
|
||||||
@@ -118,7 +118,8 @@ class MysqlContainer(Container):
|
|||||||
f"{destination}",
|
f"{destination}",
|
||||||
"--no-views",
|
"--no-views",
|
||||||
"--compress",
|
"--compress",
|
||||||
"--regex '^(?!(mysql\.))'"
|
"--regex",
|
||||||
|
"'^(?!(mysql\.))'"
|
||||||
]
|
]
|
||||||
|
|
||||||
def backup(self):
|
def backup(self):
|
||||||
|
|||||||
Reference in New Issue
Block a user