1998-09-05 05:21:11 +02:00
|
|
|
#! /bin/sh
|
|
|
|
#
|
2001-10-31 21:59:00 +01:00
|
|
|
# $NetBSD: DEINSTALL,v 1.1 2001/10/31 21:03:41 zuntum Exp $
|
1998-09-05 05:21:11 +02:00
|
|
|
|
|
|
|
case "$2" in
|
|
|
|
DEINSTALL) cat <<EOF
|
|
|
|
|
|
|
|
==========================================================================
|
|
|
|
|
1999-07-19 01:34:12 +02:00
|
|
|
Note that the inn data directory (@@INN_DATA_DIR@@) is NOT deleted during
|
|
|
|
the package deinstallation. Please remove this directory and all its
|
|
|
|
contents manually if it is no longer needed.
|
1998-09-05 05:21:11 +02:00
|
|
|
|
|
|
|
==========================================================================
|
|
|
|
|
|
|
|
EOF
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
1999-07-19 01:34:12 +02:00
|
|
|
exit 0
|