The file "Makefile" in the path /var/www/ispcp-omega-1.0.2/configs/ubuntu/proftpd contains not the neccessary instructions to copy the proftpd.conf in the correct direcotory - there ar only instructions for the different releases of Debian:
Code:
install:
$(SYSTEM_MAKE_DIRS) $(SYSTEM_CONF)/proftpd
cp -R ./backup $(SYSTEM_CONF)/proftpd
cp -R ./parts $(SYSTEM_CONF)/proftpd
cp -R ./working $(SYSTEM_CONF)/proftpd
if [ ! -d $(ROOT_CONF)/proftpd ]; then \
$(SYSTEM_MAKE_DIRS) $(ROOT_CONF)/proftpd ; \
fi
$(SYSTEM_MAKE_DIRS) $(ROOT_CONF)/proftpd/ispcp;
cp ./root_domain.conf $(ROOT_CONF)/proftpd/ispcp;
# Debian 4.0 "Etch"?
if [ $(RELEASE) = 'sarge' ]; then \
cp ./proftpd.conf $(ROOT_CONF) ; \
cp ./proftpd.conf $(SYSTEM_CONF)/proftpd ; \
elif [ $(RELEASE) = 'etch' ]; then \
if [ -e /etc/proftpd.conf ] ; then \
mv /etc/proftpd.conf /etc/proftpd.conf.bak ; \
fi ; \
cp ./proftpd1.3.conf $(SYSTEM_CONF)/proftpd/proftpd.conf ; \
cp ./proftpd1.3.conf $(ROOT_CONF)/proftpd/proftpd.conf ; \
elif [ $(RELEASE) = 'lenny' ] || [ $(RELEASE) = 'squeeze' ]; then \
if [ -e /etc/proftpd.conf ] ; then \
mv /etc/proftpd.conf /etc/proftpd.conf.bak ; \
fi ; \
cp ./proftpd1.3.conf.lenny $(SYSTEM_CONF)/proftpd/proftpd.conf ; \
cp ./proftpd1.3.conf.lenny $(ROOT_CONF)/proftpd/proftpd.conf ; \
fi \
So, the installation of the config of proftp fails.