66 lines
1.1 KiB
Text
66 lines
1.1 KiB
Text
|
#!/bin/sh
|
||
|
#
|
||
|
# $NetBSD: DEINSTALL,v 1.1 2000/12/17 22:21:45 jlam Exp $
|
||
|
|
||
|
PKGNAME=$1
|
||
|
STAGE=$2
|
||
|
|
||
|
CAT="@CAT@"
|
||
|
RM="@RM@"
|
||
|
|
||
|
SAMPLECONFDIR=${PKG_PREFIX}/share/examples
|
||
|
CONFDIR=/etc
|
||
|
CONFFILES="thttpd.conf"
|
||
|
|
||
|
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
|