9c8973311d
The test doesn't make sense. It just exits without any error if the binary doesn't exist, which is silly. Replace the DAEMON variable, which was used only once, by the full path of the binary file. Signed-off-by: Carlos Santos <casantos@datacom.ind.br> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
46 lines
532 B
Bash
Executable File
46 lines
532 B
Bash
Executable File
#!/bin/sh
|
|
|
|
trap "" HUP
|
|
trap "" TERM
|
|
[ ! -d /var/run/proftpd ] && mkdir /var/run/proftpd
|
|
[ ! -f /var/log/wtmp ] && touch /var/log/wtmp
|
|
|
|
start() {
|
|
printf "Starting ProFTPD: "
|
|
/usr/sbin/proftpd
|
|
if [ $? != 0 ]; then
|
|
echo "FAILED"
|
|
exit 1
|
|
else
|
|
echo "done"
|
|
fi
|
|
}
|
|
|
|
stop() {
|
|
printf "Stopping ProFTPD: "
|
|
killall proftpd
|
|
echo "done"
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
|
|
stop)
|
|
stop
|
|
;;
|
|
|
|
restart)
|
|
stop
|
|
start
|
|
;;
|
|
|
|
*)
|
|
echo "Usage: /etc/init.d/S50proftpd {start|stop|restart}"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0
|