mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
On deinstall, deactivate mod_perl in whichever of httpd.conf and
httpd.conf.default exist. This is a best attempt at resolving the problem where the system is left changed from before a mod_perl installation after mod_perl is removed. If only apxs had an option to revert module activation. Requested by: asami
This commit is contained in:
parent
61a90bd369
commit
9f3ffbf7de
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=43218
@ -54,4 +54,7 @@ post-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/apaci/libperl.so ${PREFIX}/libexec/apache
|
||||
@PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
||||
|
||||
post-deinstall:
|
||||
@PKG_PREFIX=${PREFIX} ${SH} ${PKGDEINSTALL} ${PKGNAME} POST-DEINSTALL
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
|
57
www/mod_perl/pkg-deinstall
Normal file
57
www/mod_perl/pkg-deinstall
Normal file
@ -0,0 +1,57 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Try to de-activate mod_perl in the installed httpd.conf and warn
|
||||
# if this fails.
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
if [ "$2" != "POST-DEINSTALL" ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
TMPDIR=${TMPDIR:=/tmp}
|
||||
PKG_TMPDIR=${PKG_TMPDIR:=${TMPDIR}}
|
||||
|
||||
apxscmd=${PKG_PREFIX}/sbin/apxs
|
||||
tmpdir=${PKG_TMPDIR}/deinstmod_perl.$$
|
||||
|
||||
if [ ! -x ${apxscmd} ]; then
|
||||
echo Can\'t find the apxs program: ${apxscmd}.
|
||||
exit 1
|
||||
fi
|
||||
|
||||
confdir=`${apxscmd} -q SYSCONFDIR`
|
||||
|
||||
if [ ! -d ${confdir} ]; then
|
||||
echo Can\'t find Apache conf dir: ${confdir}
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -f ${confdir}/httpd.conf ]; then
|
||||
conffile=httpd.conf
|
||||
fi
|
||||
if [ -f ${confdir}/httpd.conf.default ]; then
|
||||
conffile="${conffile} httpd.conf.default"
|
||||
fi
|
||||
if [ -z "${conffile}" ]; then
|
||||
echo Can\'t find either of ${confdir}/httpd.conf or
|
||||
echo ${confdir}/httpd.conf.default.
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if ! mkdir ${tmpdir}; then
|
||||
echo Can\'t create temporary directory: ${tmpdir}
|
||||
exit 1
|
||||
fi
|
||||
|
||||
for i in ${conffile}; do
|
||||
awk '{if (!/^LoadModule perl_module/ && !/^AddModule mod_perl.c/) \
|
||||
print $0}' < ${confdir}/$i > ${tmpdir}/$i
|
||||
echo Updating $i in config dir: ${confdir}
|
||||
cat ${tmpdir}/$i > ${confdir}/$i
|
||||
done
|
||||
|
||||
rm -rf ${tmpdir}
|
||||
|
||||
exit 0
|
@ -54,4 +54,7 @@ post-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/apaci/libperl.so ${PREFIX}/libexec/apache
|
||||
@PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
||||
|
||||
post-deinstall:
|
||||
@PKG_PREFIX=${PREFIX} ${SH} ${PKGDEINSTALL} ${PKGNAME} POST-DEINSTALL
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
|
57
www/mod_perl2/pkg-deinstall
Normal file
57
www/mod_perl2/pkg-deinstall
Normal file
@ -0,0 +1,57 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Try to de-activate mod_perl in the installed httpd.conf and warn
|
||||
# if this fails.
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
if [ "$2" != "POST-DEINSTALL" ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
TMPDIR=${TMPDIR:=/tmp}
|
||||
PKG_TMPDIR=${PKG_TMPDIR:=${TMPDIR}}
|
||||
|
||||
apxscmd=${PKG_PREFIX}/sbin/apxs
|
||||
tmpdir=${PKG_TMPDIR}/deinstmod_perl.$$
|
||||
|
||||
if [ ! -x ${apxscmd} ]; then
|
||||
echo Can\'t find the apxs program: ${apxscmd}.
|
||||
exit 1
|
||||
fi
|
||||
|
||||
confdir=`${apxscmd} -q SYSCONFDIR`
|
||||
|
||||
if [ ! -d ${confdir} ]; then
|
||||
echo Can\'t find Apache conf dir: ${confdir}
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -f ${confdir}/httpd.conf ]; then
|
||||
conffile=httpd.conf
|
||||
fi
|
||||
if [ -f ${confdir}/httpd.conf.default ]; then
|
||||
conffile="${conffile} httpd.conf.default"
|
||||
fi
|
||||
if [ -z "${conffile}" ]; then
|
||||
echo Can\'t find either of ${confdir}/httpd.conf or
|
||||
echo ${confdir}/httpd.conf.default.
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if ! mkdir ${tmpdir}; then
|
||||
echo Can\'t create temporary directory: ${tmpdir}
|
||||
exit 1
|
||||
fi
|
||||
|
||||
for i in ${conffile}; do
|
||||
awk '{if (!/^LoadModule perl_module/ && !/^AddModule mod_perl.c/) \
|
||||
print $0}' < ${confdir}/$i > ${tmpdir}/$i
|
||||
echo Updating $i in config dir: ${confdir}
|
||||
cat ${tmpdir}/$i > ${confdir}/$i
|
||||
done
|
||||
|
||||
rm -rf ${tmpdir}
|
||||
|
||||
exit 0
|
Loading…
Reference in New Issue
Block a user