updated mariadb version
All checks were successful
continuous-integration/drone/tag Build is passing

This commit is contained in:
2023-06-06 14:35:06 +02:00
parent f3c1f54efc
commit 7a5317012d
6 changed files with 61 additions and 348 deletions

View File

@@ -1,8 +1,17 @@
#!/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