freebsd-ports/ftp/vsftpd/pkg-deinstall
Neil Blakey-Milner 53704a2b4e Make port more verbose about creating users and what users to remove if
no longer necessary.

PR:		28179
Submitted by:	Rob Simmons <rsimmons@beanweevil.wlcg.com>
2002-03-23 11:12:19 +00:00

16 lines
298 B
Bash

#!/bin/sh
# $FreeBSD$
#
if [ "$2" != "POST-DEINSTALL" ]; then
exit 0
fi
USER=vsftpd
if pw usershow "${USER}" 2>/dev/null 1>&2; then
echo "To delete FTP user permanently, use 'pw userdel ${USER}'"
echo "Don't do this if you're using FreeBSD's anonymous FTP server"
fi
exit 0