/usr/lib/cruft/explain/HOME_FTP is in cruft-common 0.9.34.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/dash
set -e
. /usr/lib/cruft/common.sh
cruft_debug
FTPDIR=/home/ftp
if grep '^ftp:' /etc/passwd >/dev/null 2>&1; then
FTPDIR=`awk -F: '$1 == "ftp" { print $6 }' /etc/passwd`
fi
if [ -e "$FTPDIR" ]; then
cruft_find "$FTPDIR"
fi
|