Hi,
for the others that use ubuntu 14.04, i've found a problem with proftp
Sometimes, i've found that the proftp service are stopped.
This problem could be caused by the logrotate service
I've applied this solution and now it works correctly
The workaround is to edit the service file, to add a retry and sleep.
/etc/init.d/proftpd
Find this line:
start-stop-daemon --stop --signal $SIGNAL --quiet --pidfile "$PIDFILE"
Change to this:
start-stop-daemon --stop --signal $SIGNAL --retry 1 --quiet --pidfile "$PIDFILE"
Source: http://stackoverflow.com/quest…x-logrotate-restart-error
I hope that this can help someone
Bye bye