23 lines
565 B
Bash
Executable file
23 lines
565 B
Bash
Executable file
#! /bin/sh
|
|
#
|
|
# $NetBSD: DEINSTALL,v 1.1 2001/10/31 22:57:01 zuntum 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
|