mirror of
https://github.com/ZettaIO/restic-compose-backup.git
synced 2025-09-28 06:35:24 +00:00
ping mysql during status
This commit is contained in:
@@ -46,6 +46,13 @@ def status(config, containers):
|
|||||||
|
|
||||||
if container.mysql_backup_enabled:
|
if container.mysql_backup_enabled:
|
||||||
logger.info(' -> mysql %s', container.mysql_backup_enabled)
|
logger.info(' -> mysql %s', container.mysql_backup_enabled)
|
||||||
|
creds = container.get_mysql_credentials()
|
||||||
|
restic.ping_mysql(
|
||||||
|
creds['host'],
|
||||||
|
creds['port'],
|
||||||
|
creds['username'],
|
||||||
|
creds['password'],
|
||||||
|
)
|
||||||
|
|
||||||
if len(backup_containers) == 0:
|
if len(backup_containers) == 0:
|
||||||
logger.info("No containers in the project has 'restic-volume-backup.enabled' label")
|
logger.info("No containers in the project has 'restic-volume-backup.enabled' label")
|
||||||
|
Reference in New Issue
Block a user