summaryrefslogtreecommitdiff
path: root/net/nocol/pkg/DEINSTALL
blob: 487b661120a9dd599c99d3508f3b66c7bf85b149 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /bin/sh
#
# $NetBSD: DEINSTALL,v 1.1 2000/10/16 07:38:45 skrll Exp $
#

case "$2" in
        DEINSTALL) cat <<EOF

---------------------------------------------------------------------------
Data files and messages created by nocol are store is /var/run/msgs and 
/var/run/data. You may want to remove these directories manually if you
don't need them any longer:

	rm -fr /var/run/msgs /var/run/data

For further information look at $PKG_PREFIX/share
---------------------------------------------------------------------------

EOF
        ;;
esac    

exit 0