#!/bin/sh
# $OpenBSD: DEINSTALL,v 1.2 2003/06/22 10:09:57 sturm Exp $
#
# Bitlbee de-installation

PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
DB_DIR=/var/bitlbee
BITLBEEUSER=_bitlbee
BITLBEEGROUP=_bitlbee

cat <<EOF
+---------------
| To completely deinstall the bitlbee package you need
| to perform these steps as root:
|
|         # userdel $BITLBEEUSER
|         # groupdel $BITLBEEGROUP
|         # rm -rf $DB_DIR
|
| Do not do this if you plan on re-installing bitlbee
| at some future time.
+---------------

EOF
exit 0
