summaryrefslogtreecommitdiff
path: root/debian/sendmail.prerm
blob: 614318d9bebfeb7619876af3e380619e0a6efcb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh -e
#
# Debian package prerm
# Version 1.2
#
# Robert Leslie <rob@mars.org>

case "$1" in
    remove|upgrade|deconfigure)
	#DEBHELPER#
    ;;

    failed-upgrade)
    ;;

    *)
	echo "prerm called with unknown argument \`$1'" >&2
	exit 0
    ;;
esac