diff options
| author | Carlos Santos <casantos@datacom.ind.br> | 2018-04-15 23:29:36 -0300 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-04-16 07:34:55 +0200 |
| commit | 9c8973311df06453fa9400c593d26bd087afb7ec (patch) | |
| tree | 8b9114635dd8c7d952a29265af9b9756aea375fa | |
| parent | 59520e54fe2849ace596b10354152a380d3c7507 (diff) | |
| download | buildroot-9c8973311df06453fa9400c593d26bd087afb7ec.tar.gz buildroot-9c8973311df06453fa9400c593d26bd087afb7ec.zip | |
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>
| -rwxr-xr-x | package/proftpd/S50proftpd | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/package/proftpd/S50proftpd b/package/proftpd/S50proftpd index 336680a456..3f9070f26a 100755 --- a/package/proftpd/S50proftpd +++ b/package/proftpd/S50proftpd @@ -1,15 +1,13 @@ #!/bin/sh -DAEMON=/usr/sbin/proftpd trap "" HUP trap "" TERM -test -f $DAEMON || exit 0 [ ! -d /var/run/proftpd ] && mkdir /var/run/proftpd [ ! -f /var/log/wtmp ] && touch /var/log/wtmp start() { printf "Starting ProFTPD: " - $DAEMON + /usr/sbin/proftpd if [ $? != 0 ]; then echo "FAILED" exit 1 |

