#!/bin/sh
#
# $FreeBSD: ports/www/horde-base/files/pkg-deinstall.in,v 1.3 2007/04/08 23:42:25 sat Exp $
#
PATH=/usr/sbin:/usr/bin:/bin ; export PATH
handle_config() {
if [ -z "${PACKAGE_BUILDING}" ]; then
for cf in /usr/local/www/horde/chora/config/*.dist; do
diff -bBqw $cf ${cf%.dist} >/dev/null 2>&1
case $? in
0) # original config file, delete
rm -f ${cf%.dist}
;;
1) # config file has been updated, leave it
;;
*) # not found?
;;
esac
done
fi
}
case $2 in
DEINSTALL)
handle_config
;;
POST-DEINSTALL)
if [ x != x ]; then
cat <<EOMSG
A horde port has been deleted. If you are not upgrading
and don't intend to use Horde any more then you may wish
to delete the account, which can be done
with the following command:
# pw userdel
EOMSG
fi
;;
esac
syntax highlighted by Code2HTML, v. 0.9.1