blob: 92385b79947ee4a02b1225a7f183b290abc4a2a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#!/bin/sh
set -e;
PACKAGE=sendmail-bin;
if [ "$1" = "purge" ]; then
# If postrm is called *AND* there are no files, exit quickly
# (This is a *GROSS* hack... beter use the test below)
#if [ ! -s `echo "$0" | sed -e 's/postrm$/list/'` ]; then
# echo "Purging replaced package $PACKAGE, nothing to do...";
# exit 0;
# fi;
# We're *really* purging; neither sendmail nor sendmail-tls
# is currently installed
if [ -f @libexecdir@/sendmail ]; then
echo "Purging replaced package $PACKAGE, nothing to do...";
exit 0;
fi;
# Currently, dh_installdebconf doesn't do db_stop... ensure it is done!
if [ -e /usr/share/debconf/confmodule ]; then
# Source debconf library.
. /usr/share/debconf/confmodule;
# Make sure we're done
#db_stop;
# Remove my changes to the db.
db_purge;
fi;
rm -f @sysconfdir@/mail/sendmail.cf.old
rm -f @sysconfdir@/mail/submit.cf.old
fi
#DEBHELPER#
|