docker-mariadb-backup-slave/healthcheck.sh
paspo 7a5317012d
All checks were successful
continuous-integration/drone/tag Build is passing
updated mariadb version
2023-06-06 14:35:06 +02:00

17 lines
390 B
Bash
Executable File

#!/bin/bash
# slave not configured
RES=$(mysql -uroot -p"$MYSQL_ROOT_PASSWORD" -e 'SHOW SLAVE STATUS\G')
if [ "a$RES" = "a" ]; then
exit 0
fi
# slave ok
RES=$(mysql -uroot -p"$MYSQL_ROOT_PASSWORD" -e 'SHOW SLAVE STATUS\G' | egrep '(Slave_IO_Running|Slave_SQL_Running):' | awk -F: '{print $2}' | tr '\n' ',')
if [ "$RES" = " Yes, Yes," ]; then
exit 0
fi
# slave not ok
exit 1