Comment 14 for bug 1112363

Revision history for this message
Raghavendra D Prabhu (raghavendra-prabhu) wrote : Re: problems with Percona XtraDB Cluster upgrade 5.5.29

a )Regarding the SIGHUP issue I have fixed it here https://bazaar.launchpad.net/~raghavendra-prabhu/percona-xtradb-cluster/scripting-fixes/revision/392 (for next release)

b) Regarding the issue with upgrade, manually adding a check for
upgrade in configure section of the script should fix it.

c) Regarding debian-start, we have found that it is more
unhelpful than helpful. Hence I have added like

            # Now start mysqlcheck or whatever the admin wants.
             # only if the file /etc/mysql/NO-DEBIAN-START is absent.
             if ! test -e /etc/mysql/NO-DEBIAN-START;then
                 output=$(/etc/mysql/debian-start)
                 [ -n "$output" ] && log_action_msg "$output"
                fi

    in the the init code for next PXC release.