blob: 910010dd94ed9aa500d04440b83dafb0b1eb765a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# $NetBSD: DEINSTALL,v 1.1.1.1 2009/12/20 15:39:48 taca Exp $
FO_DIR="@PREFIX@/@FO_DIR@"
case ${STAGE} in
DEINSTALL)
# remove temporary files.
${FIND} ${FO_DIR}/cache ${FO_DIR}/tmp -type f \
! -name dummy.php -exec ${RM} -f {} \;
;;
esac
|