generated from gaoyang3513/SDK_RK3288
[Mod] First commit
This commit is contained in:
33
package/vsftpd/S70vsftpd
Normal file
33
package/vsftpd/S70vsftpd
Normal file
@ -0,0 +1,33 @@
|
||||
#! /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
|
||||
Reference in New Issue
Block a user