diff mbox

[1/1] mongoose: wait some time between stop and start of the service

Message ID 1385387725-1733-1-git-send-email-d.viti@infosolution.it
State Accepted
Commit be1cf3bad4317508f8268556943b4449863697fc
Headers show

Commit Message

Davide Viti Nov. 25, 2013, 1:55 p.m. UTC
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>
---
 package/mongoose/S85mongoose | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Peter Korsgaard Nov. 26, 2013, 11:44 a.m. UTC | #1
>>>>> "Davide" == Davide Viti <zinosat@tiscali.it> writes:

 > 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>

Committed, thanks.
diff mbox

Patch

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