summaryrefslogtreecommitdiff
path: root/debian/rmail.preinst.in
blob: f1aa978b23831556a9cd57886240396a1ebb00de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -e

PACKAGE=rmail;

if [ -L @docdir@/$PACKAGE ]; then
	# /usr/share/doc/$PACKAGE was a symlink to /usr/share/doc/sendmail
	rm @docdir@/$PACKAGE
fi
if [ -L /usr/share/bug/$PACKAGE ]; then
	rm /usr/share/bug/$PACKAGE
fi

#DEBHELPER#