blob: 6312685c0e8365f1340b78b87004124c70385ac1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#! /bin/sh
#
# $NetBSD: DEINSTALL,v 1.2 1999/07/18 23:34:14 tron Exp $
case "$2" in
DEINSTALL) cat <<EOF
==========================================================================
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.
==========================================================================
EOF
;;
esac
exit 0
|