From: Peter Korsgaard Date: Fri, 27 Nov 2020 17:13:52 +0000 (+0100) Subject: package/vsftpd: S70vsftpd: correct -x argument to start-stop-daemon X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=405f76425d20ef2f84006f2f6db798c338691c13;p=buildroot.git package/vsftpd: S70vsftpd: correct -x argument to start-stop-daemon Fixes #13341 The -x / --exec start-stop-daemon option expects the path to the executable, not just the name, leading to errors when running the init script: Starting vsftpd: start-stop-daemon: unable to stat //vsftpd (No such file or directory) Reported-by: tochansky@tochlab.net Signed-off-by: Peter Korsgaard --- diff --git a/package/vsftpd/S70vsftpd b/package/vsftpd/S70vsftpd index 38bcfd431f..62f9a1b744 100644 --- a/package/vsftpd/S70vsftpd +++ b/package/vsftpd/S70vsftpd @@ -9,12 +9,12 @@ DAEMON=/usr/sbin/$NAME case "$1" in start) printf "Starting $DESC: " - start-stop-daemon -S -b -x $NAME + start-stop-daemon -S -b -x $DAEMON echo "OK" ;; stop) printf "Stopping $DESC: " - start-stop-daemon -K -x $NAME + start-stop-daemon -K -x $DAEMON echo "OK" ;; restart|force-reload)