[Bug 815528] [NEW] vsftpd installation script fails

2011-07-24 Thread mosfet
Public bug reported: Linux sd-12345 2.6.38-8-generic-pae #42-Ubuntu SMP Mon Apr 11 05:17:09 UTC 2011 i686 i686 i386 GNU/Linux root@sd-30635:/etc# lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description:Ubuntu 11.04 Release:11.04 Codename: natty

[Bug 815528] Re: vsftpd installation script fails

2011-07-24 Thread mosfet
When I look at postinst script /var/lib/dpkg/info/ the problem seems to be with the following lines : # Automatically added by dh_installinit if [ -e /etc/init/vsftpd.conf ]; then invoke-rc.d vsftpd start || exit $? fi when I try to invoke manually vsftp through invoke.rc or

[Bug 815528] Re: vsftpd installation script fails

2011-07-24 Thread mosfet
Ok I have replaced by the postinst script found on my ubuntu lucic : # Automatically added by dh_installinit if [ -e /etc/init/vsftpd.conf ]; then # start fails if already running start vsftpd || : fi seems to work. Would be curious to know why I had to do this ... Could it be