Ubuntu 10.04
He creado este script de inicio ( /etc/init/pure-ftpd.conf ):
# pure-ftpd - FTP server
description "Pure-FTPd server"
start on filesystem
stop on runlevel S
respawn
respawn limit 10 5
pid file /var/run/pure-ftpd.pid
console output
pre-start script
test -x /usr/local/sbin/pure-ftpd || { stop; exit 0; }
end script
exec /usr/local/sbin/pure-ftpd --maxclientsnumber 2 --maxclientsperip 10 --prohibitdotfileswrite --prohibitdotfilesread --noanonymous --chrooteveryone --dontresolve --nochmod --pidfile /var/run/pure-ftpd.pid
Pero...
# start pure-ftpd
start: Unknown job: pure-ftpd
y
# service pure-ftpd start
start: Unknown job: pure-ftpd
¿Cuál es el problema?
¿Es necesario hacer algo más?
¿Es necesario crear un script en /etc/init.d también?