mariadb/debian/mariadb-server-10.8.prerm
Sergei Golubchik 892153bd72 10.8 branch
2021-11-02 20:08:42 +01:00

12 lines
326 B
Bash

#!/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