27 lines
554 B
Plaintext
27 lines
554 B
Plaintext
|
#!/bin/sh
|
||
|
# $OpenBSD: DEINSTALL,v 1.1.1.1 2003/04/16 18:51:08 wilfried Exp $
|
||
|
#
|
||
|
# Bitlbee de-installation
|
||
|
|
||
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
||
|
PREFIX=${PKG_PREFIX:-/usr/local}
|
||
|
DB_DIR=${DB_DIR}
|
||
|
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
|