8 lines
228 B
Bash
8 lines
228 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
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
|
||
|
exit 1
|
||
|
|