freebsd-ports/security/maia/files/pkg-deinstall.in
Chris Rees 3c4a0c7d56 - Add missing dependency
- Chase distfile change
- Correct SPF option, add option for DKIM plugin

PR:		ports/160379
Submitted by:	Janky Jay III <ek@purplehat.org> (maintainer)
2011-09-08 19:32:16 +00:00

20 lines
459 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
DIR=%%MAIADIR%%
QUARANTINE=%%MAIAQUARANTINE%%
MAIAWEB=%%PREFIX%%/www/maia
if [ "$2" = "POST-DEINSTALL" ]; then
if [ -e ${DIR} ]; then
echo "You should manually remove the \"${DIR}\" directory."
fi
if [ -e ${QUARANTINE} ]; then
echo "You should manually remove the \"${QUARANTINE}\" directory."
fi
if [ -e ${MAIAWEB} ]; then
echo "You should manually remove the \"${MAIAWEB}\" directory."
fi
fi