Your IP : 216.73.216.189


Current Path : /var/lib/dpkg/info/
Upload File :
Current File : /var/lib/dpkg/info/mariadb-server-10.3.prerm

#!/bin/sh
set -e



# Modified dh_systemd_start snippet that's not added automatically due /etc/init.d/mysql
if [ -d /run/systemd/system ]; then
	deb-systemd-invoke stop mariadb.service >/dev/null
# Modified dh_installinit snippet to only run with sysvinit
elif [ -x "/etc/init.d/mysql" ]; then
	invoke-rc.d mysql stop || exit $?
fi

exit 0