b24923176c
be created just before its "configure" phase, obviating the need for the hackish dependency on a qmail-users package. Since the new functionality in bsd.pkginstall.mk also records and enforces numeric UIDs and GIDs in binary packages, remove the note on that matter from MESSAGE. Bump PKGREVISION.
17 lines
297 B
Text
17 lines
297 B
Text
# $NetBSD: DEINSTALL,v 1.5 2006/04/29 04:53:17 schmonz Exp $
|
|
|
|
QMAILDIR=@QMAILDIR@
|
|
|
|
VAR_QMAIL_DIRS="alias bin boot control doc man queue users"
|
|
|
|
case "${STAGE}" in
|
|
|
|
POST-DEINSTALL)
|
|
|
|
for dir in $VAR_QMAIL_DIRS; do
|
|
if [ -h ${QMAILDIR}/$dir ]; then
|
|
${RM} -f ${QMAILDIR}/$dir
|
|
fi
|
|
done
|
|
;;
|
|
esac
|