Salut,
voilà j’ai concocté un petit script de démarrage pour mon serveur ftp sur debian (j’ai juste adapté les chemins), il est basé sur red-hat et il fonctionne mais seulement j’ai une erreur à la ligne 12 car je ne sais pas à quoi correspond le fichier /etc/init.d/functions
car il n’existe pas dans ce répertoire, voici le script /etc/init.d/pure-ftpd :
[code]#!/bin/bash
Startup script for the pure-ftpd FTP Server $Revision: 1.3 $
chkconfig: 2345 85 15
description: Pure-FTPd is an FTP server daemon based upon Troll-FTPd
processname: pure-ftpd
pidfile: /var/run/pure-ftpd.pid
config: /usr/local/pureftpd/pure-ftpd.conf
Source function library.
. /etc/init.d/functions
RETVAL=0
Path to the pure-ftp binaries.
prog=pure-config.pl
fullpath=/usr/local/pureftpd/sbin/$prog
pureftpwho=/usr/local/pureftpd/sbin/pure-ftpwho
start() {
echo -n $"Starting $prog: "
$fullpath /usr/local/pureftpd/pure-ftpd.conf --daemonize
RETVAL=$?
[ $RETVAL = 0 ] && touch /var/lock/subsys/$prog
echo
}
stop() {
echo -n $"Stopping $prog: "
kill $(cat /var/run/pure-ftpd.pid)
RETVAL=$?
[ $RETVAL = 0 ] && rm -f /var/lock/subsys/$prog
echo
}
See how we were called.
case “$1” in
start)
start
;;
stop)
stop
;;
restart)
stop
start
;;
condrestart)
if [ -f /var/lock/subsys/$prog ] ; then
stop
# avoid race
sleep 3
start
fi
;;
status)
status $prog
RETVAL=$?
if [ -f $pureftpwho ] && [ $RETVAL -eq 0 ] ; then
$pureftpwho
fi
;;
*)
echo $"Usage: $prog {start|stop|restart|condrestart|status}"
RETVAL=1
esac
exit $RETVAL
[/code]
qu’est ce que je dois mettre comme chemin à la place de /etc/init.d/functions ?