freebsd-ports/mail/horde-turba/pkg-deinstall
Steve Price 5e71622409 Adding turba version 1.0.
The Horde contact management application.

PR:		32089, 32152
Submitted by:	Thierry Thomas <thierry@thomas.as>
2001-12-03 02:40:12 +00:00

12 lines
383 B
Bash

#!/bin/sh
# Try to restore httpd.conf when deinstalling Turba
if [ x$2 != xDEINSTALL ]; then
exit
fi
if [ -f ${PKG_PREFIX}/etc/apache/httpd.conf.beforeTurba ] ; then
echo "Restoring httpd.conf..."
cp ${PKG_PREFIX}/etc/apache/httpd.conf ${PKG_PREFIX}/etc/apache/httpd.conf.deinstTurba
mv ${PKG_PREFIX}/etc/apache/httpd.conf.beforeTurba ${PKG_PREFIX}/etc/apache/httpd.conf
fi