summaryrefslogblamecommitdiff
path: root/ftp/vsftpd/pkg-deinstall
blob: ed72e4c47c258133a0956fe6bdb4195a11f35317 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                                           
#!/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