mongoose: wait some time between stop and start of the service

Startup script fails to restart the service: 1s delay is enough to fix
this.

Also apply a minor fix of the script name in the usage string

Signed-off-by: Davide Viti <d.viti@infosolution.it>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Davide Viti 2013-11-25 14:55:25 +01:00 committed by Peter Korsgaard
parent 54b369c51f
commit be1cf3bad4

View File

@ -28,12 +28,12 @@ case "$1" in
restart|force-reload) restart|force-reload)
echo -n "Restarting $DESC: " echo -n "Restarting $DESC: "
start-stop-daemon -K -x "$DAEMON" start-stop-daemon -K -x "$DAEMON"
sleep 1
start-stop-daemon -S -x "$DAEMON" -b -- $OPTIONS start-stop-daemon -S -x "$DAEMON" -b -- $OPTIONS
echo "$NAME." echo "$NAME."
;; ;;
*) *)
N=/etc/init.d/$NAME echo "Usage: $0 {start|stop|restart|force-reload}" >&2
echo "Usage: $N {start|stop|restart|force-reload}" >&2
exit 1 exit 1
;; ;;
esac esac