summaryrefslogtreecommitdiff
path: root/mail/squirrelmail/pkg/DEINSTALL
blob: fb5679fd32f711b907dcbc0c6e48f2dd660e2441 (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#!/bin/sh
#
# $NetBSD: DEINSTALL,v 1.5 2001/07/13 07:09:20 jlam Exp $

PKGNAME=$1
STAGE=$2

CAT="@CAT@"
CMP="@CMP@"
RM="@RM@"
RMDIR="@RMDIR@"
TRUE="@TRUE@"

APACHE_SYSCONFDIR=@APACHE_SYSCONFDIR@
SAMPLECONFDIR=${PKG_PREFIX}/share/examples/squirrelmail
CONFDIR=${APACHE_SYSCONFDIR}
DATADIR=/var/spool/squirrelmail
SMDIR=${PKG_PREFIX}/@SMDIR@
CONFFILES="config.php"

case ${STAGE} in
DEINSTALL)
	# Remove configuration files if they don't differ from the default
	# config file.
	#
	FILE=${DATADIR}/data/default_pref
	SAMPLEFILE=${SMDIR}/data/default_pref
	if ${CMP} -s ${FILE} ${SAMPLEFILE}
	then
		${RM} -f ${FILE}
	fi
	FILE=${CONFDIR}/squirrelmail.conf
	SAMPLEFILE=${SAMPLECONFDIR}/squirrelmail.conf
	if ${CMP} -s ${FILE} ${SAMPLEFILE}
	then
		${RM} -f ${FILE}
	fi
	;;

POST-DEINSTALL)
	modified_files=''
	for FILE in							\
		${SMDIR}/config/config.php				\
		${DATADIR}/data/default_pref				\
		${CONFDIR}/squirrelmail.conf
	do
		if [ -f ${FILE} ]
		then
			modified_files="${modified_files} ${FILE}"
		fi
	done

	${RMDIR} ${SMDIR}/config 2>/dev/null || ${TRUE}
	${RMDIR} ${SMDIR} 2>/dev/null || ${TRUE}
	${RMDIR} ${DATADIR}/attachments 2>/dev/null || ${TRUE}
	${RMDIR} ${DATADIR}/data 2>/dev/null || ${TRUE}
	${RMDIR} ${DATADIR} 2>/dev/null || ${TRUE}
	${RMDIR} ${CONFDIR} 2>/dev/null || ${TRUE}

	existing_dirs=''
	for dir in ${SMDIR} ${DATADIR}
	do
		if [ -d ${dir} ]
		then
			existing_dirs="${existing_dirs} ${dir}"
		fi
	done

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

  * the following files:

EOF
			for file in ${modified_files}
			do
				echo "	${file}"
			done
		fi
		if [ -n "${existing_dirs}" ]
		then
			${CAT} << EOF

  * the following directories:

EOF
			for dir in ${existing_dirs}
			do
				echo "	${dir}"
			done
		fi
		${CAT} << EOF
===========================================================================
EOF
	fi
	;;

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