diff options
Diffstat (limited to '')
-rw-r--r-- | debian/dovecot-imapd.prerm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/debian/dovecot-imapd.prerm b/debian/dovecot-imapd.prerm new file mode 100644 index 0000000..2ad0a1f --- /dev/null +++ b/debian/dovecot-imapd.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# |