Package: vsftpd
Version: 2.3.2-3
The postinst file for vfstpd checks for user and group
name 'ftp', but it actually only checks for names starting
with ftp. Instead of
if ! getent group | grep -q "^${_USERNAME}"
it should check for
if ! getent group | grep -q "^${_USERNAME}:"
Otherwise it may think that 'ftp' exists when only 'ftpfool'
exists, then fail later when trying to 'chown root:ftp' a
file.
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]