initial banner et .banner la confusion etait possible
je debute sous linux,
j aimerai que mon daemon soit executer automatiquement avec les parametres -A ect ...
le fichier dans /etc/init.d est le suivant
Code :
- #! /bin/sh
- #
- # pure-ftpd starts and stops the pure-ftpd ftp daemon
- PATH=/sbin:/bin:/usr/sbin:/usr/bin
- NAME=pure-ftpd
- DESC="ftp server"
- : ${SSDAEMONLOGOPTS:="--quiet"}
- UPLOADDAEMON=/usr/sbin/pure-uploadscript
- UDNAME=pure-uploadscript
- UDDESC="ftp upload handler"
- WRAPPER=/usr/sbin/pure-ftpd-wrapper
- # try to figure with suffix this script is called,
- # $0 might be a symlink pointing to this script
- if [ -h $0 ]; then
- ME=`/bin/readlink $0`
- else
- ME=$0
- fi
- #SUFFIX=`basename $ME | sed -ne 's/^pure-ftpd-\(.*\)/\1/p'`
- SUFFIX=`-A -b -B -c 15 -C 2 -E -j -l puredb:/etc/pure-ftpd/pureftpd.pdb -R -u 1 -X -T`
- if [ "$SUFFIX" ] ; then
- DAEMON=/usr/sbin/pure-ftpd-$SUFFIX
- else
- DAEMON=/usr/sbin/pure-ftpd
- fi
- test -x $DAEMON || exit 0
- test -x $WRAPPER || exit 0
- .
- .
- .
|
je ne my connais pas en shell, j ai essayer de jouer avec SUFFIX mais sa me sort une ereurlors du /etc/init.d/pure-ftp start.
comment pourais je lui faire executerpure-ftpd -A -b -B -c 15 -C 2 -E -j -l puredbetc/pure-ftpd/pureftpd.pdb -R -u 1 -X
?
merci