summaryrefslogtreecommitdiff
path: root/debian/mariadb-server.prerm
blob: 8fd172da9d28cfcf6723e808c21adb5295d12875 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -e

#DEBHELPER#

# Modified dh_systemd_start snippet that's not added automatically
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/mariadb" ]; then
	invoke-rc.d mariadb stop || exit $?
fi