5e71622409
The Horde contact management application. PR: 32089, 32152 Submitted by: Thierry Thomas <thierry@thomas.as>
12 lines
383 B
Bash
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
|