Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- #!/bin/sh
- #
- # Start the Drone Nest Application....
- #
- PIDDIR=/var/run
- DNESTPID=$PIDDIR/DNest.pid
- APPDIR=/root/TH-DNest
-
- case "$1" in
- start)
- printf "Starting Drone Nest Application: "
- start-stop-daemon -S -q -m -b -p $DNESTPID --exec $APPDIR/dnest_daemon.sh
- [ $? = 0 ] && echo "OK" || echo "FAIL"
- ;;
- stop)
- printf "Stopping Drone Nest Application: "
- start-stop-daemon -S -q -m -b -p $DNESTPID --exec $APPDIR/stop.sh
- [ $? = 0 ] && echo "OK" || echo "FAIL"
- ;;
- restart|reload)
- "$0" stop
- "$0" start
- ;;
- *)
- echo "Usage: $0 {start|stop|restart}"
- exit 1
- esac
- exit $?
|