openbsd-ports/databases/gnats/pkg/DEINSTALL

47 lines
892 B
Bash

#!/bin/sh
# $OpenBSD: DEINSTALL,v 1.6 2004/08/08 16:24:28 espie Exp $
#
# De-installation setup of gnats
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
do_notice()
{
echo ""
echo "+---------------"
echo "| To completely deinstall the $1 package you need to perform"
echo "| these steps as root:"
echo "|"
echo "| crontab -u _gnats -r"
echo "| userdel _gnats"
echo "|"
echo "| Do not do this if you plan on re-installing $1"
echo "| at some future time."
echo "+---------------"
echo ""
}
# verify proper execution
#
if [ $# -ne 2 ]; then
echo "usage: $0 distname { DEINSTALL }" >&2
exit 1
fi
# Verify/process the command
#
case $2 in
DEINSTALL)
if [ ${PKG_DELETE_EXTRA} != Yes ]; then
do_notice "$1"
fi
;;
*)
echo "Usage: `basename $0` distname DEINSTALL" >&2
exit 1
;;
esac
exit 0