blob: 7a8b54fb6df03a98edc86fa5e4856d0831cee804 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
#
# by Christain Pointner <equinox@helsinki.at> - 28/07/15
echo "<<<mysql-repl>>>"
mysql --defaults-extra-file=/etc/mysql/debian.cnf -e "SHOW SLAVE STATUS\G" 2>/dev/null | sed 's/^ *//' | sed '/^*/d'
exit 0
|