blob: 64aa3ef6ea509a44d6032dc8f00dc3f144d622a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
#
# $NetBSD: DEINSTALL,v 1.1 2004/08/18 17:52:25 ben Exp $
#
case $2 in
DEINSTALL) cat << EOF
=============================================================
The records, log and bones were not wiped out by this
deletion process. If you don't want them around, please
remove ${PKG_PREFIX}/share/ivan.
=============================================================
EOF
;;
esac
|