Browse Source

proftpd: don't test if the binary exists in the init script

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>
Carlos Santos 7 years ago
parent
commit
9c8973311d
1 changed files with 1 additions and 3 deletions
  1. 1 3
      package/proftpd/S50proftpd

+ 1 - 3
package/proftpd/S50proftpd

@@ -1,15 +1,13 @@
 #!/bin/sh
 #!/bin/sh
 
 
-DAEMON=/usr/sbin/proftpd
 trap "" HUP
 trap "" HUP
 trap "" TERM
 trap "" TERM
-test -f $DAEMON || exit 0
 [ ! -d /var/run/proftpd ] && mkdir /var/run/proftpd
 [ ! -d /var/run/proftpd ] && mkdir /var/run/proftpd
 [ ! -f /var/log/wtmp ] && touch /var/log/wtmp
 [ ! -f /var/log/wtmp ] && touch /var/log/wtmp
 
 
 start() {
 start() {
 	printf "Starting ProFTPD: "
 	printf "Starting ProFTPD: "
-	$DAEMON
+	/usr/sbin/proftpd
 	if [ $? != 0 ]; then
 	if [ $? != 0 ]; then
 		echo "FAILED"
 		echo "FAILED"
 		exit 1
 		exit 1