Comment 9 for bug 1435709

Revision history for this message
Luis Mondesi (lemsx1) wrote :

Also, note that I had to add "return 0" to the "pinger()" function:

/usr/share/mysql/mysql-systemd-start

Maybe this function should be written in a way that it provides feedback:

pinger () {
  while /bin/true ; do
    sleep 1
    mysqladmin ping >/dev/null 2>&1 && break
    logger -p daemon.info "$0 sleeping for 1 second..."
  done
}