summaryrefslogtreecommitdiffstats
path: root/debian/prerm
blob: 94172155b244ae15c47585fbfc0541f15d603fa0 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
set -e

if [ -x /etc/init.d/rspamd ] && ! [ -d /run/systemd/system ]; then
    invoke-rc.d rspamd stop || exit $?
fi

#DEBHELPER#