Hi,

In the mysql RA script, we can see: 

  # Spin waiting for the server to come up.

    # Let the CRM/LRM time us out if required

    start_wait=1
    while [ $start_wait = 1 ]; do
        mysql_status
        rc=$?
        if [ $rc = $OCF_SUCCESS ]; then
            start_wait=0

        elif [ $rc != $OCF_NOT_RUNNING ]; then
            ocf_log info "MySQL start failed: $rc"
            return $rc
        fi
        sleep 2
    done

but when the timeout on start configured in cib occurs,
what does Pacemaker to make this infinite loop ending ?

Thanks 
Alain
_______________________________________________
Linux-HA mailing list
[email protected]
http://lists.linux-ha.org/mailman/listinfo/linux-ha
See also: http://linux-ha.org/ReportingProblems

Reply via email to