14 lines
353 B
Text
14 lines
353 B
Text
|
# $NetBSD: DEINSTALL,v 1.1.1.1 2006/06/09 22:11:03 jlam Exp $
|
||
|
|
||
|
case ${STAGE} in
|
||
|
POST-DEINSTALL)
|
||
|
couriersslcache="@COURIER_STATEDIR@/couriersslcache"
|
||
|
if ${TEST} -f "$couriersslcache"; then
|
||
|
# Unconditionally remove the SSL cache file.
|
||
|
${ECHO} "Removing Courier SSL cache file:"
|
||
|
${ECHO} " $couriersslcache"
|
||
|
${RM} -f $couriersslcache
|
||
|
fi
|
||
|
;;
|
||
|
esac
|