openbsd-ports/net/vsftpd/pkg/DEINSTALL
sturm 9ba029ab5e - obey SYSCONFDIR
- new user naming schema
- bump PKGNAME

couderc@ ok
2003-06-23 19:08:52 +00:00

31 lines
718 B
Bash

#!/bin/sh
# $OpenBSD: DEINSTALL,v 1.2 2003/06/23 19:08:52 sturm Exp $
#
# opennap de-installation
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
CONFIG_DIR=${SYSCONFDIR}
VSFTPDUSER=_vsftpd
VSFTPDGROUP=_vsftpd
if [ -d $CONFIG_DIR ]; then
echo
echo "+---------------"
echo "| To completely deinstall the $1 package you need to perform"
echo "| this step as root:"
echo "|"
echo "| userdel $VSFTPDUSER"
echo "| groupdel $VSFTPDGROUP"
echo "| rm -f $CONFIG_DIR/vsftpd.conf"
echo "|"
echo "| Do not do this if you plan on re-installing $1"
echo "| at some future time."
echo "+---------------"
echo
fi
exit 0