26 lines
564 B
Bash
26 lines
564 B
Bash
#!/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
|