diff options
Diffstat (limited to 'net/nocol/pkg/DEINSTALL')
-rwxr-xr-x | net/nocol/pkg/DEINSTALL | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/net/nocol/pkg/DEINSTALL b/net/nocol/pkg/DEINSTALL new file mode 100755 index 00000000000..487b661120a --- /dev/null +++ b/net/nocol/pkg/DEINSTALL @@ -0,0 +1,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 |