diff options
Diffstat (limited to 'misc/jitterbug/DEINSTALL')
-rw-r--r-- | misc/jitterbug/DEINSTALL | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/misc/jitterbug/DEINSTALL b/misc/jitterbug/DEINSTALL new file mode 100644 index 00000000000..90c0f8546a2 --- /dev/null +++ b/misc/jitterbug/DEINSTALL @@ -0,0 +1,25 @@ +#!/bin/sh +# +# $NetBSD: DEINSTALL,v 1.1 2001/11/01 01:28:24 zuntum Exp $ + +JB_USER=@JB_USER@ +JB_GROUP=@JB_GROUP@ +JB_PACKAGE=@JB_PACKAGE@ + +PKG=$1 +STAGE=$2 + +if [ "$STAGE" != "DEINSTALL" ]; +then + exit 0 +fi + +echo "If you are removing jitterbug permanently, you may wish to" +echo " - remove user ${JB_USER}" +echo " - remove group ${JB_GROUP}" +echo " - remove entries in your httpd.conf (usually ${PKG_PREFIX}/etc/httpd/httpd.conf)" +echo " - remove mail alias for ${JB_PACKAGE}-bugs in your mail aliases" +echo " (typically /etc/aliases or /etc/mail/aliases)" +echo " and run \`newaliases' (if you use sendmail)" + +exit 0 |