summaryrefslogtreecommitdiff
path: root/www/jakarta-tomcat/DEINSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'www/jakarta-tomcat/DEINSTALL')
-rw-r--r--www/jakarta-tomcat/DEINSTALL26
1 files changed, 26 insertions, 0 deletions
diff --git a/www/jakarta-tomcat/DEINSTALL b/www/jakarta-tomcat/DEINSTALL
new file mode 100644
index 00000000000..289e2d8ed89
--- /dev/null
+++ b/www/jakarta-tomcat/DEINSTALL
@@ -0,0 +1,26 @@
+#!/bin/sh
+#
+# $NetBSD: DEINSTALL,v 1.1 2001/11/01 02:17:07 zuntum Exp $
+#
+
+PKGNAME=$1
+STAGE=$2
+
+case ${STAGE} in
+DEINSTALL)
+ ;;
+POST-DEINSTALL)
+ cat << EOF
+===========================================================================
+The configuration and log files for ${PKGNAME} have not been
+removed. If you will not be using ${PKGNAME} any longer, you
+may wish to completely remove the ${PKG_PREFIX}/tomcat directory.
+===========================================================================
+EOF
+ ;;
+*)
+ echo "Unexpected argument: $2"
+ exit 1
+ ;;
+esac
+exit 0