aboutsummaryrefslogtreecommitdiff
path: root/security/maia/files/pkg-deinstall.in
diff options
context:
space:
mode:
Diffstat (limited to 'security/maia/files/pkg-deinstall.in')
-rw-r--r--security/maia/files/pkg-deinstall.in20
1 files changed, 0 insertions, 20 deletions
diff --git a/security/maia/files/pkg-deinstall.in b/security/maia/files/pkg-deinstall.in
deleted file mode 100644
index cc1a3ba12353..000000000000
--- a/security/maia/files/pkg-deinstall.in
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/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