ef1a2fc264
that facilitate its customization. Already in production, Openbravo ERP encompasses a broad range of functionalities such as finance, supply chain, manufacturing & much more. WWW: http://www.openbravo.com/ PR: ports/129175 Submitted by: loader at freebsdmall.com
29 lines
406 B
Bash
29 lines
406 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PATH=/bin:/usr/bin
|
|
|
|
if [ "$2" != "POST-DEINSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
TMP_DIR="hsperfdata_root hsperfdata_www"
|
|
|
|
rm_dir () {
|
|
for dir in $@
|
|
do
|
|
if [ -d /tmp/${dir} ]; then
|
|
rm -fr /tmp/${dir}
|
|
fi
|
|
done
|
|
}
|
|
|
|
find /tmp -type f -name 'bitrock_installer*' | xargs rm -f
|
|
find /tmp -type f -name 'bitrock_debug*' | xargs rm -f
|
|
|
|
rm_dir ${TMP_DIR}
|
|
|
|
exit 0
|