405f76425d
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 <peter@korsgaard.com>
34 lines
431 B
Bash
34 lines
431 B
Bash
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
DESC="vsftpd"
|
|
NAME=vsftpd
|
|
DAEMON=/usr/sbin/$NAME
|
|
|
|
case "$1" in
|
|
start)
|
|
printf "Starting $DESC: "
|
|
start-stop-daemon -S -b -x $DAEMON
|
|
echo "OK"
|
|
;;
|
|
stop)
|
|
printf "Stopping $DESC: "
|
|
start-stop-daemon -K -x $DAEMON
|
|
echo "OK"
|
|
;;
|
|
restart|force-reload)
|
|
echo "Restarting $DESC: "
|
|
$0 stop
|
|
sleep 1
|
|
$0 start
|
|
echo ""
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart|force-reload}" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0
|