19 lines
433 B
Text
19 lines
433 B
Text
|
#!/bin/sh
|
||
|
#
|
||
|
# $NetBSD: DEINSTALL,v 1.1.1.1 2002/05/31 13:01:39 seb Exp $
|
||
|
#
|
||
|
|
||
|
case "$2" in
|
||
|
DEINSTALL) cat <<EOF
|
||
|
|
||
|
=============================================================
|
||
|
Note that namazu configuration (@CONFDIR@/*), index
|
||
|
files (@INDEXDIR@/*) are not removed in the
|
||
|
de-installation process. You should remove those by hand,
|
||
|
if you no longer need them.
|
||
|
=============================================================
|
||
|
|
||
|
EOF
|
||
|
;;
|
||
|
esac
|