
### Default paths and settings ###
# export PROFTPD_CONF="/etc/proftpd.conf"
# export SECURE_LOG="/var/log/secure"
# export XFER_LOG="/var/log/xferlog"
# export PROC_PATH="/proc"
# export PROFTPD_BINARY="proftpd"
# export FTPWHO_BINARY="ftpwho"
# export SERVER_USER="nobody"
# export SERVER_GROUP="nobody"
# export WELCOME_MESSAGE="welcome.msg"
# export HTML_STATISTICS="/var/www/html/ftp.htm"
# export MIN_PASS_LEN=6

### Debian commands for starting the server at boot ###
# export SYSINIT_START_CMD="update-rc.d -f proftpd defaults"
# export SYSINIT_STOP_CMD="update-rc.d -f proftpd remove"

### RH/Fedora commands for starting the server at boot ###
### This is the defaults for the rpm specfile ###
export SYSINIT_START_CMD="chkconfig proftpd on"
export SYSINIT_STOP_CMD="chkconfig proftpd off"


./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --sbindir=/usr/sbin &&
make &&
make install
