1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-11 07:22:22 +00:00
freebsd-ports/ftp/vsftpd-ext/pkg-deinstall
Kurt Jaeger 81e21611a5 ftp/vsftpd-ext: resurrect, upgrade 2.3.5 -> 3.0.2, stagify
Extended build of vsftpd with additional features.

WWW: http://vsftpd.devnet.ru/eng/

PR:		193916
Submitted by:	Xu Jing <xjflyttp@gmail.com>
2014-09-26 20:43:29 +00:00

17 lines
382 B
Bash

#!/bin/sh
# $FreeBSD: /tmp/pcvs/ports/ftp/vsftpd-ext/pkg-deinstall,v 1.1 2009-06-16 03:53:39 pgollucci Exp $
#
if [ "$2" != "POST-DEINSTALL" ]; then
exit 0
fi
USER=ftp
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