blob: be36a165514b6d0f25c15aa86d166513d57c7bb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#!/bin/sh
#
# $NetBSD: DEINSTALL,v 1.1 2000/08/12 06:29:18 jlam Exp $
PKGNAME=$1
STAGE=$2
case ${STAGE} in
DEINSTALL)
;;
POST-DEINSTALL)
CONF=/etc/jwhois.conf
DBCACHE=/var/db/jwhois.db
cat << EOF
===========================================================================
If you won't be using ${PKGNAME} any longer, you may want to remove the
following files:
${CONF}
${DBCACHE}
===========================================================================
EOF
;;
*)
echo "Unexpected argument: ${STAGE}"
exit 1
;;
esac
exit 0
|