diff options
author | zuntum <zuntum> | 2001-11-01 02:15:23 +0000 |
---|---|---|
committer | zuntum <zuntum> | 2001-11-01 02:15:23 +0000 |
commit | 915c5245c3b3e44827ba7cd24d7c765c57a1dd02 (patch) | |
tree | f392f0f557931c9cf9a1ff512b5a4b44150c2ec3 /www/ap-ssl/DEINSTALL | |
parent | 0b6b506536c1ff50f1531d26be2fccfe86c74335 (diff) | |
download | pkgsrc-915c5245c3b3e44827ba7cd24d7c765c57a1dd02.tar.gz |
Move pkg/ files into package's toplevel directory
Diffstat (limited to 'www/ap-ssl/DEINSTALL')
-rw-r--r-- | www/ap-ssl/DEINSTALL | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/www/ap-ssl/DEINSTALL b/www/ap-ssl/DEINSTALL new file mode 100644 index 00000000000..45e7902d252 --- /dev/null +++ b/www/ap-ssl/DEINSTALL @@ -0,0 +1,81 @@ +#!/bin/sh +# +# $NetBSD: DEINSTALL,v 1.1 2001/11/01 02:15:59 zuntum Exp $ + +PKGNAME=$1 +STAGE=$2 + +CAT="@CAT@" +CMP="@CMP@" +RM="@RM@" + +SERVERROOT="@APACHE_SYSCONFDIR@" +SAMPLECONFDIR=${PKG_PREFIX}/share/examples/mod_ssl +CONFDIR=${SERVERROOT} +CONFFILES="apache_start.conf" +NONCONFFILES=" ssl.crl/Makefile.crl \ + ssl.crl/README.CRL \ + ssl.crt/Makefile.crt \ + ssl.crt/README.CRT \ + ssl.crt/ca-bundle.crt \ + ssl.csr/README.CSR \ + ssl.key/README.KEY \ + ssl.prm/README.PRM" + +case ${STAGE} in +DEINSTALL) + # Remove configuration files if they don't differ from the default + # config file. + # + for file in ${CONFFILES} ${NONCONFFILES} + do + FILE=${CONFDIR}/${file} + SAMPLEFILE=${SAMPLECONFDIR}/${file} + if ${CMP} -s ${FILE} ${SAMPLEFILE} + then + ${RM} -f ${FILE} + fi + done + ;; + +POST-DEINSTALL) + modified_files='' + for file in ${CONFFILES} ${NONCONFFILES} + do + FILE=${CONFDIR}/${file} + if [ -f ${FILE} ] + then + modified_files="${modified_files} ${FILE}" + 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 + ${CAT} << EOF +=========================================================================== +EOF + fi + ;; + +*) + echo "Unexpected argument: ${STAGE}" + exit 1 + ;; +esac +exit 0 |