summaryrefslogtreecommitdiff
path: root/misc/vfu/pkg/DEINSTALL
blob: 7bdba62b8e2ab3f41359fbbb6d0f843933945545 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/bin/sh
#
# $NetBSD: DEINSTALL,v 1.1 2001/06/20 05:27:33 jlam Exp $

PKGNAME=$1
STAGE=$2

CAT="@CAT@"
RM="@RM@"

SAMPLECONFDIR=${PKG_PREFIX}/share/examples/vfu
CONFDIR=${PKG_PREFIX}/etc
CONFFILES="vfurc"

case ${STAGE} in
DEINSTALL)
	# Remove configuration files if they don't differ from the default
	# config file.
	#
	for file in ${CONFFILES}
	do
		FILE=${CONFDIR}/${file}
		SAMPLEFILE=${SAMPLECONFDIR}/${file}
		if diff -q ${FILE} ${SAMPLEFILE} >/dev/null
		then
			${RM} -f ${FILE}
		fi
	done
	;;

POST-DEINSTALL)
	modified_files=''
	for file in ${CONFFILES}
	do
		FILE=${CONFDIR}/${file}
		if [ -f ${FILE} ]
		then
			modified_files="${modified_files} ${FILE}"
		fi
	done

	if [ -n "${modified_files}" ]
	then
		${CAT} << EOF
===========================================================================
If you won't be using ${PKGNAME} any longer, you may want to remove the
following files:

EOF
		for file in ${modified_files}
		do
			echo "	${file}"
		done
		${CAT} << EOF
===========================================================================
EOF
	fi
	;;

*)
	echo "Unexpected argument: ${STAGE}"
	exit 1
	;;
esac
exit 0