From 4918914042fa93db9192673cfbb5c54632ac391c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Fri, 10 Jan 2020 09:47:19 +0200 Subject: [PATCH] MXS-2810: Stop MaxScale on uninstall --- etc/postrm.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/etc/postrm.in b/etc/postrm.in index 1e31d788f..5e477037e 100755 --- a/etc/postrm.in +++ b/etc/postrm.in @@ -17,9 +17,11 @@ then if [ -f /usr/lib/systemd/system/maxscale.service ] then + systemd stop maxscale.service rm /usr/lib/systemd/system/maxscale.service elif [ -f /lib/systemd/system/maxscale.service ] then + systemd stop maxscale.service rm /lib/systemd/system/maxscale.service fi