File: prerm

package info (click to toggle)
maildrop 2.9.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 13,100 kB
  • sloc: ansic: 26,822; cpp: 9,085; sh: 4,868; makefile: 752; perl: 94
file content (14 lines) | stat: -rw-r--r-- 550 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh -e

if [ "$1" = "upgrade" -o "$1" = "remove" ]; then
  update-alternatives --remove lockmail /usr/bin/lockmail.maildrop
  update-alternatives --remove maildirmake /usr/bin/maildirmake.maildrop
  update-alternatives --remove deliverquota /usr/sbin/deliverquota.maildrop
  update-alternatives --remove maildir.5.gz /usr/share/man/man5/maildir.maildrop.5.gz
  update-alternatives --remove maildirquota.7.gz /usr/share/man/man7/maildirquota.maildrop.7.gz
  update-alternatives --remove makedat /usr/bin/makedat.maildrop
fi

#DEBHELPER#

exit 0