Comment 2 for bug 1311840

Revision history for this message
monty solomon (monty+launchpad) wrote : Re: [Bug 1311840] Re: Executing yum upgrade on a running Percona server does not restart the service.

The upstream script performs the restart

# Was the server running before the upgrade? If so, restart the new one.
if [ "$SERVER_TO_START" = "true" ] ; then
  # Restart in the same way that mysqld will be started normally.
    if [ -x /etc/init.d/mysql ] ; then
        /etc/init.d/mysql start
        echo "Giving mysqld 5 seconds to start"
        sleep 5
    fi
fi