17 lines
498 B
Text
17 lines
498 B
Text
# $NetBSD: DEINSTALL,v 1.1 2001/11/01 01:00:03 zuntum Exp $
|
|
|
|
PKGNAME=$1
|
|
STAGE=$2
|
|
|
|
if [ "$STAGE" != "POST-DEINSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
echo ===========================================================================
|
|
echo
|
|
echo Please check the contents of /etc/mailer.conf and make sure there
|
|
echo is an appropriate value defined for newaliases.
|
|
echo
|
|
echo "See mailer.conf(5) and mailwrapper(8) for details."
|
|
echo
|
|
echo ===========================================================================
|