18 lines
431 B
Bash
18 lines
431 B
Bash
#!/bin/sh
|
|
#
|
|
# $NetBSD: DEINSTALL,v 1.1 2001/10/31 23:29:26 zuntum Exp $
|
|
#
|
|
|
|
case "$2" in
|
|
DEINSTALL) cat <<EOF
|
|
|
|
=============================================================
|
|
Note that namazu configuration (@CONFDIR@/*), index
|
|
files (@DATADIR@/*) are not removed in the
|
|
de-installation process. You should remove those by hand,
|
|
if you no longer need them.
|
|
=============================================================
|
|
|
|
EOF
|
|
;;
|
|
esac
|