forked from Lainports/freebsd-ports
- Chase distfile change - Correct SPF option, add option for DKIM plugin PR: ports/160379 Submitted by: Janky Jay III <ek@purplehat.org> (maintainer)
20 lines
459 B
Bash
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
|