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

PACKAGE=sendmail-cf;

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#