mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
17 lines
298 B
Plaintext
17 lines
298 B
Plaintext
|
#!/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
|