#!/bin/bash -e . /usr/share/debconf/confmodule if [ -n "$DEBIAN_SCRIPT_DEBUG" ]; then set -v -x; DEBIAN_SCRIPT_TRACE=1; fi ${DEBIAN_SCRIPT_TRACE:+ echo "#42#DEBUG# RUNNING $0 $*" 1>&2 } # Automatically added by dh_installinit if [ -x "/etc/init.d/mysql" ]; then if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then invoke-rc.d mysql stop || exit $? else /etc/init.d/mysql stop || exit $? fi fi # End automatically added section