#!/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