openbsd-ports/net/pdnsd/pkg/DEINSTALL
sturm 3eb9e5230d - use new username schema
- remove Sebastian Stark as MAINTAINER by his request
- bump PKGNAME
2003-06-22 14:07:21 +00:00

53 lines
1.1 KiB
Bash

#!/bin/sh
# $OpenBSD: DEINSTALL,v 1.2 2003/06/22 14:07:22 sturm Exp $
#
# De-installation setup of pdnsd
# exit on errors, use a sane path and install prefix
#
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
CONFIG_DIR=${SYSCONFDIR}
# Function: tell the user what they need to do to delete the port completely
#
do_notice()
{
echo
echo "+---------------"
echo "| To completely deinstall the $1 package you need to perform"
echo "| these steps as root:"
echo "|"
echo "| rmuser _pdnsd"
echo "| rm -f ${CONFIG_DIR}/pdnsd.conf"
echo "| rm -rf /var/pdnsd"
echo "| rm -f /var/run/pdnsd.pid"
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)
do_notice "$1"
;;
*)
echo "usage: $0 distname DEINSTALL" >&2
exit 1
;;
esac
exit 0