diff options
Diffstat (limited to 'debian/dovecot-lmtpd.prerm')
-rw-r--r-- | debian/dovecot-lmtpd.prerm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/debian/dovecot-lmtpd.prerm b/debian/dovecot-lmtpd.prerm new file mode 100644 index 0000000..2ad0a1f --- /dev/null +++ b/debian/dovecot-lmtpd.prerm @@ -0,0 +1,12 @@ +#!/bin/sh +set -e + +if [ -d /run/systemd/system ]; then + deb-systemd-invoke stop dovecot.socket || true +fi + +if [ -x "/etc/init.d/dovecot" ]; then + invoke-rc.d dovecot stop +fi + +#DEBHELPER# |